December 4, 2009 at 9:27 am
I have Moved the databases from sql 2000 to 2005 using detach and attach method, and transfered logins using the script available in Microsoft. After doing that the logins are not available at Server level. Can somebody help me on this..
December 4, 2009 at 9:39 am
What scirpt did you use? If you ran the sp_help_revlogin script, the logins are there. Logins are only at the server level. Users are at the database level.
December 4, 2009 at 11:54 am
How can i check whether all the logins are moved from 2000 to 2005 or not
December 4, 2009 at 12:14 pm
use the sp_help_revlogin script - execute from the Master database.
You need to execute it from the 2000 server, copy the results to the 2005 server and then execute that.
To verify that the logins were transferred, do the following from ssms (Management Studio)
1. Connect to your database server
2. Expand security
3. Expand Logins
You should be able to see your transferred logins from there.
Jason...AKA CirqueDeSQLeil
_______________________________________________
I have given a name to my pain...MCM SQL Server, MVP
SQL RNNR
Posting Performance Based Questions - Gail Shaw[/url]
Learn Extended Events
December 4, 2009 at 12:37 pm
Run this two (2) stored procedures on each of your servers and database(s)
sp_Helplogins
sp_helpuser
Compare the results from each server and each database. This should allow you to determine which have been successfully transferred and which have not been successfully transferred.
Or
Proceed as directed by CirquedeSQLeil
December 4, 2009 at 12:58 pm
Thankyou all guys, This is all new to me, Please help me out with the issues. I will keep posting
December 4, 2009 at 1:02 pm
How do we refresh schema and data in a database? and move to test server to UAT Server?
December 4, 2009 at 1:30 pm
Before making the transfer to the User Acceptance Testing (UAT) server may I suggest you read the following, if you have not already done so.
SQL Server 2005 Books Online (September 2007)
Backward Compatibility
and read each of the additional links in that document.
This information may cause you to test and possible alter code on your development server before moving to UAT.
Viewing 8 posts - 1 through 7 (of 7 total)
You must be logged in to reply to this topic. Login to reply