posted on Sunday, June 25, 2006 8:17 AM by marcorusso

A tool to improve DTS to SSIS migration

I wrote a small tool to improve the migration from SSIS to DTS. The problem I had to solve was this: I have many Data Transform Tasks that have a simple behavior, read data from a query and write data on a table, using fast load with batch insert.

You say: why not to use the SSIS Migration Wizard? This is exactly what I want to do, but unfortunately I used UDL files into my package and the migration wizard do not migrate them and leave embedded a legacy DTS package for each Data Transform Task.

My idea was to modify the DTS changing properties where needed, and my tool (DtsToSsisPrepare) generate a new DTS file that can be better migrated to SSIS.

This is the command line help:

Dts to SSIS Prepare 1.0.0.0
Syntax: DtsToSsisPrepare.exe [switch:value]
  /ConsolidateUdl
     Consolidate UDL connections into regular connections
  /OptimizeConnections
     Optimize connections recycling the same connection for several tasks
  /RemoveAdvancedTransformations
     Remove advanced transformations phases from Transform Data Task
  /ResetMaxErrorCount
     Reset Maximum Error Count property from Transform Data Task
  /DtsSource
     Source DTS file name
  /DtsDestination
     Destination DTS file name
  /help
     show help
  /all
     Activate all conversion features

The best way to use the tool is to specify /all to enable all conversions.
DtsSource and DtsDestination are mandatory parameters.

I wish to write an article explaining the tool behavior in the coming days, in the meantime I'd like to receive feedback on this. Full source code and binaries are downloadable on www.sqlbi.eu. Enjoy!

Comments

# Facilitare la migrazione da DTS a SSIS @ Sunday, June 25, 2006 9:31 AM

Per facilitare la migrazione di un package DTS verso SSIS (Integration Services) è necessario verificare...

Anonymous

# Migrazione package da DTS a SSIS con DtsToSsis-Prepare @ Sunday, July 09, 2006 9:43 AM

Ho messo in linea un articolo più dettagliato relativo al tool DtsToSsis-Prepare che ho rilasciato un...

Anonymous

# DTS in SQL 2005 - Good News and Bad News @ Thursday, April 12, 2007 12:49 AM

DTS has always worried me.

Unfortunately, I have 331 reasons to worry:

 PS > gci -r -i *.dts...

Anonymous

# DTS in SQL 2005 - Good News and Bad News @ Thursday, April 12, 2007 12:51 AM

DTS has always worried me.

Unfortunately, I have 331 reasons to worry:


PS > gci -r -i *.dts...

Anonymous

# DTS in SQL 2005 - Good News and Bad News @ Thursday, April 12, 2007 12:59 AM

DTS has always worried me. Unfortunately, I have 331 reasons to worry: PS > gci -r -i *.dts | group Extension

Anonymous