Skip to content

Instantly share code, notes, and snippets.

@jboeke
Last active May 2, 2023 22:14
Show Gist options
  • Save jboeke/993773 to your computer and use it in GitHub Desktop.
Save jboeke/993773 to your computer and use it in GitHub Desktop.
Fix Orphaned SQL Users
-- Fix orphaned users after restoring a SQL database (pre-2012 version)
USE YourDBName;
exec sp_change_users_login 'update_one', 'username', 'username';
-- Fix orphaned users after restoring a SQL database (version 2012 and after)
USE master;
CREATE LOGIN username WITH PASSWORD = 'password';
USE YourDBName;
ALTER USER username WITH LOGIN = username;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment