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 |
|
SQLCode
Posting Yak Master
143 Posts |
Posted - 2004-03-22 : 10:08:49
|
| Hi,Is there any easy way to import all packages from server A to Server B?One very long method is to copy each pckge as a file and copy all files.The only other info. I know is SElect * from sysdtspackages. But how can they be imported to the serverB?Any help will be greatly appreciatedTIA |
|
|
raymondpeacock
Constraint Violating Yak Guru
367 Posts |
Posted - 2004-03-22 : 10:19:39
|
| Backup ServerB msdb database and then copy in (using DTS or a straightforward 'insert into' statement) the sysdtspackages table from ServerA.Raymond |
 |
|
|
|
|
|