Technical Article

Script to sync all users to their respective logins

,

When restoring a database to a different server, this script will sync the users to the system logins. (as a relative newcomer, I'm pretty proud of this)

declare @cStatement varchar(255)

declare G_cursor CURSOR for select "exec sp_change_users_login 'auto_fix'," + "'" + convert(varchar(64),name)+ "'"
 from sysusers
	

set nocount on
SET QUOTED_IDENTIFIER OFF
OPEN G_cursor
FETCH NEXT FROM G_cursor INTO @cStatement 
WHILE (@@FETCH_STATUS <> -1)
begin
	EXEC (@cStatement)
	FETCH NEXT FROM G_cursor INTO @cStatement 
end
DEALLOCATE G_cursor

Rate

You rated this post out of 5. Change rating

Share

Share

Rate

You rated this post out of 5. Change rating