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
 SQL Server Administration (2000)
 Copying DTS fron one server to another

Author  Topic 

the1gadget
Yak Posting Veteran

55 Posts

Posted - 2005-12-20 : 07:43:45
Hi All

I know I have this some where but I can not find it.

I want to copy a set of DTS packages from one server another. I know it can be done but I for got to book mark it.

--
David

AndrewMurphy
Master Smack Fu Yak Hacker

2916 Posts

Posted - 2005-12-20 : 07:54:54
Generate script of DTS from your VSS (you DO put thenm in a VSS??)
Apply script to new server
Go to Top of Page

robvolk
Most Valuable Yak

15732 Posts

Posted - 2005-12-20 : 07:55:52
You may even be able to open the package and do Save As to the other server.
Go to Top of Page

the1gadget
Yak Posting Veteran

55 Posts

Posted - 2005-12-20 : 08:35:33
No that was not it.

I am sure that you create a DTS package linking the two servers.

I will keep on looking.
Go to Top of Page

the1gadget
Yak Posting Veteran

55 Posts

Posted - 2005-12-20 : 08:41:29
When I did it I ran a query like.

==============================8<==============================
SELECT T1.* FROM dbo.sysdtspackages AS T1
INNER JOIN (SELECT [name], [id], MAX([createdate]) AS [createdate]
FROM dbo.sysdtspackages GROUP BY [name], [id]) AS T2
ON T1.[id] = T2.[id] AND T1.[createdate] = T2.[createdate]
==============================8<==============================

From inside a DTS package.
Go to Top of Page

robvolk
Most Valuable Yak

15732 Posts

Posted - 2005-12-20 : 09:57:28
That's not how to transfer them. Follow Andrew's advice or mine first.
Go to Top of Page
   

- Advertisement -