I want to preface that you can move logins from one SQL Server to another SQL Server in many different ways. In my experience, I have found that this is the easiest way to move logins from one SQL Server to another SQL Server while keep existing passwords.
We will begin by downloading a script called Sp_Help_RevLogin.
Note: If you are transferring logins from SQL Server 2000 to SQL Server 2005, download this script. Next, navigate to Start | All Programs | Microsoft SQL Server 2005 | SQL Server Management Studio. Simply highlight and copy the script from the link provided and paste into SQL Server Management Studio, as shown in Figure A. Note: When you first open SQL Server Management Studio, you must click New Query and select the Master database prior to pasting the script and clicking Execute.
Figure A
Figure B
Figure C
Listing A
Use MasterFigure D provides you with an example of the above syntax.GoExec sp_help_revlogin
Figure D
Figure E
Figure F
Figure G
Figure H
Figure I
Figure J
Figure K
Figure L
Figure M
Figure N
We still have the final task of resolving permissions. When you move a database from one server to another server that is running SQL Server, a mismatch happens between the SIDs (security identifier numbers). The sp_change_users_login can fix the issue.
Open SQL Server Management studio and run the script as shown in Listing B. Figure Odisplays how this Listing B will look in SQL Server Management Studio.Listing B
DECLARE @UserName nvarchar(255)DECLARE Cursor_OrphanedUser cursor for SELECT NAME FROM sysusers WHERE issqluser = 1 and (sid is not null and sid <> 0x01) and suser_sname(sid) is NOT null ORDER BY nameOPEN Cursor_OrphanedUser FETCH NEXT FROM Cursor_OrphanedUser INTO @UserName WHILE (@@fetch_status = 0)BEGIN PRINT @UserName + ' Synchronization of Logins in Progress' EXEC sp_change_users_login 'Update_one', @UserName, @UserName FETCH NEXT FROM Cursor_OrphanedUser INTO @UserName END CLOSE Cursor_OrphanedUser DEALLOCATE Cursor_OrphanedUser Go
Figure O

Run this script on each database for which you have to synchronize logins. Once you have finished running this script on each database, you have successfully moved SQL Server logins from one server to another.