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.

 All Forums
 SQL Server 2000 Forums
 Import/Export (DTS) and Replication (2000)
 Copying one or more rows in many tables using DTS

Author  Topic 

JCKSQL
Starting Member

3 Posts

Posted - 2004-10-08 : 14:44:30
Hello,
I have a question that some of you DTS experts may be able to help me with. I would like to create a package that will copy a "Account". from one server to another. There are 100+ tables I need to copy but only a few rows on each (the rows that relate to that particular account). I know I can do this by using the DTS designer to link the two connections(servers) and create 100+ data transformation tasks but I was wondering if there is a easier way? Any assistance would be great.
Thanks
JCKSQL

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2004-10-08 : 14:54:30
I wouldn't use DTS for this. Why not just use INSERT INTO SELECT * FROM? You can use linked servers in the query so that it works across servers.

Tara
Go to Top of Page

JCKSQL
Starting Member

3 Posts

Posted - 2004-10-08 : 14:58:58
tduggan,
Linked servers was my first choice, however it turns out it will be much eaisier to deal with the "Powers That Be" if I use DTS (Linked servers is dicouraged where I work). Any other options?
Thanks
Go to Top of Page
   

- Advertisement -