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 |
|
Frozen_123
Starting Member
33 Posts |
Posted - 2007-11-09 : 20:40:14
|
| Hello,While migrating from sql server 2000 to sql server 2005 how can I migrate DTS and logins...Need urgent help....Regards,Frozen |
|
|
dataguru1971
Master Smack Fu Yak Hacker
1464 Posts |
Posted - 2007-11-09 : 20:53:14
|
DTS isn't native to 2005, so you may have to create the .dts files and import to the new server..something I have to deal with in about 6 mos..so I will be interested to see what others say in this thread.This information was passed to me as part of another discussion:quote: Since most of these operations are one-time things generally specific to yourenvironment, you're probably better off doing most of this by hand to ensureit's done correctly. For this process, I would suggest the following courseof action:1) Create Full Backups of the databases you want to transfer from the SQL2000 environment2) Take those databases off line to ensure no additional data is added tothem3) Restore the SQL 2000 backups to the designated SQL 2005 database4) Change migrated DBs to the Compatibility Level 90 (Right-Click on the DB-> Properties -> Options)5) Change migrated DB Page Verification models to CHECKSUM (Right-Click onthe DB -> Properties -> Options)6) Rebuild all table indexes for all migrated DBs (DBCC REINDEX)7) Update all table statistics for all migrated DBs (sp_updatestats)8) Create login accounts/groups that need to access to the migrated DBs9) Run sp_change_users_login 'REPORT' on each migrated DB and then fix theorphaned logins by running sp_change_users_login 'AUTO_FIX', 'userName'10) Run app/user/db tests to ensure functionality isn't affected by the newSQL environment11) Drop offline databases from SQL 2000 instanceThis doesn't take into account any supporting DTS packages or jobs that youwould need to migrate as well. I would also recommend running the SQL 2005Upgrade Advisor (Start -> All Programs -> MS SQL Server 2005) before you doany of this as well as it may point out some things that you should change oraddress during the migration. With this plan, if you need to roll backanything, you can just bring the SQL 2000 DBs back online and drop all themigrated DBs, address the encountered problems, and try again.John E,SQL DBA
|
 |
|
|
snSQL
Master Smack Fu Yak Hacker
1837 Posts |
|
|
|
|
|