Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
dmaxj
Posting Yak Master
174 Posts |
Posted - 2011-10-21 : 08:59:10
|
I am trying to improve the performance of an job that is scheduled to run every four hours. The job contains a legacy dts package. Would converting the dts package to an ssis package improve the performance? Thanks |
|
nigelrivett
Master Smack Fu Yak Hacker
3385 Posts |
Posted - 2011-10-21 : 09:04:08
|
Possibly. You won't know until you try - it might be slower.Have you looked at what it does - might be a better way to implement.==========================================Cursors are useful if you don't know sql.SSIS can be used in a similar way.Beer is not cold and it isn't fizzy. |
|
|
dmaxj
Posting Yak Master
174 Posts |
Posted - 2011-10-21 : 15:21:15
|
The package creates 4 temp tables and moves roughly 300 millions rows from multiple joined tables to several other tables. The tables are in separate db's on the same sql server. |
|
|
|
|
|