I am converting a SQL Server 2000 database to SQL Server 2005 and then to SQL Server 2012. Reading
http://support.microsoft.com/kb/246133
I have followed Method 2.
After you run the output from the script in SQL Server Management Studio on the destination SQL Server 2005 are you done then? I would think that the internal numbers would not match. I am confused by the instructions. Do I need to run something else? Won't the logons still be orphaned. All that this script does is add the logons to the security folder at the instance level.
I am not sure that I understand this statement:
"If you transfer integrated logins between instances of SQL Servers in the same domain, the same SID is used and the user is not likely to be orphaned."
When I look at another web page,
http://support.microsoft.com/kb/274188, I come across this example
Use Northwind
go
sp_change_users_login 'update_one', 'test', 'test'
Am I correct that I will need to run the procedure sp_change_users_login to correct the orphan users?
lcerni