|
I am upgrading sql server 2005 to 2008R2 and I have used detach and attach to move databases of the application. Do I also need to detach and attach the system databases too.
(comments are locked)
|
|
you cannot attach or restore backups of the system databases from a lower version of SQL Server to a higher version. Your easiest option is probably to script everything out (logins, roles, Agent jobs, etc).
(comments are locked)
|
|
The system databases contain a lot of information, however there is a little more information that we need to know before we can point you in the right direction. When you did the upgrade, how did you do it? Did you run the Upgrade path from the disk or did you put it on a new server, in a side by side mode. Some of the things that you could lose depending on how you upgraded could include logins, jobs, linked servers, SQLMail configurations. But if you did the upgrade path and detached and attached so that you protect the database then you may not need to do anything outside test and monitor. It may help us a lot if you had a check list that you could post. I am working on a side by side upgrade. I have built a new server where I have sqlserver 2008R2 installed. I have detached and attached the application databases. Is there a way to automatically recreate the logins? At this time I have manually recreated the logins.
Apr 06 '12 at 03:20 PM
Chitrarekha
There are a couple ways that you can move the logins, the way that I perfer to use the revlogin sp. You can find more information here.
Apr 06 '12 at 03:34 PM
Chris shaw
(comments are locked)
|


Good point Shawn, I have never looked into that, I always use the scripts to move it.