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 - 2012-01-09 : 16:14:38
|
I am converting a stored procedure into an SSIS package. There are roughly 20 tables on the destination server that will get loaded with data. Can I get by using one overall connection to my destination server to handle loading all the tables OR do would I get better performance by making separate connections for each table???The idea is to get some parallel processing to occur, but I am not sure if the one connection will provide this. I will be using INSERT INTO SELECT FROM statements for each table in my 'Execute SQL Task' controls.Regards |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2012-01-10 : 04:57:42
|
one connection should be sufficient. all the data flow task source components will use same connection------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/ |
|
|
|
|
|