Export SQL 2000 DTS, Security profiles and Server Agent Jobs to SQL 2008
I am in need of a method to export or create file to transfer all DTS files, Jobs and Security permissions from our older SQL 2000 server into the new SQL 2008 server. Is there an app within either SQL to perform this? Or a commercial app that you cannot promote in this venue? At present I have scheduled to backup each Database Container through the Management Job into the SQL 2008 Backup folder.
Microsoft SQL Server
Last Comment
edlunad
8/22/2022 - Mon
edlunad
DTS files and Jobs are stored in the system database MSDB, logins are stored in the system dabase Master, you can just make a regular backup of those and restore it into the new one (this may overwrite your current 2008 data)
or if you want to copy just some items you can do it with regular t-sql queries, here is a query to view all your DTS jobs...
edlunad, I am able to see all the packages...however, how am I to export and import into 2008? And I have backed up the MSDB and Master DB's... when I 'restore' those DB's into 2008 are you saying that all the security permissions and Jobs will import?
or if you want to copy just some items you can do it with regular t-sql queries, here is a query to view all your DTS jobs...
Open in new window