Restoring a Backup to a different Server - User Permissions - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T10:25:30Z http://stackoverflow.com/feeds/question/461385 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/461385/restoring-a-backup-to-a-different-server-user-permissions 2 Restoring a Backup to a different Server - User Permissions Dems 2009-01-20T14:00:28Z 2009-01-20T14:54:57Z <p>I have backed up and restored a MS SQL Server 2005 database to a new server.</p> <p><strong>What is the best way of recreating the login, the users, and the user permissions?</strong></p> <p>On SQL Server 2000's Enterprise Manager I was able to script the logins, script the users and script the user permissions all seperately. I could then run one after the other and the only remaining manual step was to set the login password (which do not script for security reasons)</p> <p>This does not seem possible in SQL Server 2005's Management Studio, making everything very fiddly and time consuming. (I end up having to script the whole database, delete all logins and users from the new database, run the script, and then trawl through a mixture of error message to see what worked and what didn't.)</p> <p>Does anyone have any experience and recommendations on this?</p> http://stackoverflow.com/questions/461385/restoring-a-backup-to-a-different-server-user-permissions/461617#461617 0 Answer by Barry for Restoring a Backup to a different Server - User Permissions Barry 2009-01-20T14:52:28Z 2009-01-20T14:52:28Z <p>I use the SQL Compare product from Red Gate (<a href="http://www.red-gate.com/products/SQL_Compare/index.htm" rel="nofollow">http://www.red-gate.com/products/SQL_Compare/index.htm</a>). There are other similar products around but I've had no reason to look for one as SQL Compare has never let me down.</p> <p>You'll find it is useful for a lot more than the your current requirement as it will help synchronize all types of database object, not just login and permissions.</p> http://stackoverflow.com/questions/461385/restoring-a-backup-to-a-different-server-user-permissions/461624#461624 6 Answer by Brent Ozar for Restoring a Backup to a different Server - User Permissions Brent Ozar 2009-01-20T14:54:57Z 2009-01-20T14:54:57Z <p>The easiest way to do this is with Microsoft's sp_help _revlogin (had to put a space in there to fool the formatting), a stored procedure that scripts all SQL Server logins, defaults and passwords, and keeps the same SIDs.</p> <p>You can find it in this knowledge base article:</p> <p><a href="http://support.microsoft.com/kb/918992" rel="nofollow">http://support.microsoft.com/kb/918992</a></p>