views:

1091

answers:

5

I'm looking for tutorials or walkthroughs for converting DTS packages into the new SSIS 2005. Any one knows.

+2  A: 

Migrating DTS Packages to Integration Services

SQL Server Integration Services provides a robust way to process millions of rows of data. The platform is highly extensible and performs much faster than the previous DTS platform. Migration of old DTS packages can be done two ways: through the built-in Package Migration Wizard, which handles simple package migrations; and through DTS xChange, which handles both simple and complex DTS migrations, while applying best practices to the migrated packages.

sepang
A: 

within solution explorer there is a menu option to import DTS packages. This should do all the conversion for you. Having said that i've only ever tried it on simple packages

A: 

Known DTS migration issues. http://msdn.microsoft.com/en-us/library/ms143462(SQL.90).aspx

Daud
A: 

I would highly recommend one and only 3rd party solution DTS xChange

http://pragmaticworks.com/products/Business-Intelligence/dtsxchange

This product not only converts your dts logic to ssis but also adds best practices and some framework (e.g. Auditing Framework and Deployment Framework). So if you are not expert in SSIS world you can be worry free and let DTS xChange decide whats the best for you. Every rules are highly configurable according to your need.

A: 

SSIS is so much better than DTS that I recommend rewriting your DTS packages as SSIS packages instead of migrating them. I recommend this especially for any DTS packages which needed to play games with dependencies in order to simulate looping or other features that DTS did not have.

John Saunders