the easiest way to transfer DTS packages is with bcp, not only works with 2000 but also will move to 2005 as well.
Recover Those Packages!
Ever need to recover a single package? Don't have local backups? Read this!!!
2001-08-16
6,856 reads
lynnathomas, 2012-02-07 (first published: 2011-12-15)
the easiest way to transfer DTS packages is with bcp, not only works with 2000 but also will move to 2005 as well.
on production EXEC master.dbo.xp_cmdshell "bcp msdb.dbo.sysdtspackages out f:\DRTEST\DTS_Packages.txt -c" on DR EXEC master.dbo.xp_cmdshell "bcp msdb.dbo.sysdtspackages in f:\DRTest\DTS_Packages.txt -c -E -T"
Ever need to recover a single package? Don't have local backups? Read this!!!
2001-08-16
6,856 reads
DBAs often ask how to transfer DTS packages and move them between servers. They also want a version control system that is more robust than that provided in msdb. Steve Jones looks at one of the features of the DTS designer that solves both of these problems.
2001-08-09
5,939 reads
When trying to implement data from an external source, very rarely do you receive the data in perfect condition. In part one of this series, we show you how to clean your data using DTS.
2001-06-01
8,404 reads
This article will show you how to use the FileSystemObject to determine the existence of a file inside DTS.
2001-05-23
8,334 reads
In SQL Server 7.0 Data Transformation Services (DTS), dynamically configuring packages was difficult. With the aid of a new Dynamic Properties task in SQL Server 2000, this assignment is easy.
2001-05-18
12,225 reads