July 24, 2012 at 2:48 am
Hi
R there any steps to transfer logins from 2008 to 2008
July 24, 2012 at 3:00 am
SSIS can be used for this - http://msdn.microsoft.com/en-us/library/ms137870(v=sql.100).aspx.
July 24, 2012 at 3:02 am
Many different ways
1. Right click the login, select script login as, then create to new query window
2. Google "sp_help_revlogin"
3. SSIS Transfer logins task
4. Manually recreate them on the second server
Also google ALTER LOGIN and sp_change_user_login as you will need to map the SID's (for SQL logins only) to access the databases if you transfer databases between servers.
July 24, 2012 at 3:03 am
The stored procedure sp_help_revlogin could do this, refer to following article:
http://support.microsoft.com/kb/918992
July 24, 2012 at 3:50 am
anthony.green (7/24/2012)
2. Google "sp_help_revlogin"
This is the preferred method for any migrations involving SQL Logins as the SID's are included and remove the need to fix orphaned logins
July 24, 2012 at 3:54 am
I personally tend to miss out the SID part when running the script to the other server, just my personal preference.
July 24, 2012 at 4:13 am
anthony.green (7/24/2012)
I personally tend to miss out the SID part when running the script to the other server, just my personal preference.
Making work for yourself there.
July 24, 2012 at 4:15 am
Yep totally agree on that, just half the time the developers create logins which arn't needed so it just adds that extra security step when promoting to test and live.
Viewing 8 posts - 1 through 7 (of 7 total)
You must be logged in to reply to this topic. Login to reply