This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- tells you the orphaned users | |
EXEC sp_change_users_login 'report' | |
-- to fix if you already have the server login: | |
EXEC sp_change_users_login 'Auto_Fix', 'enter your username here' | |
-- to fix if you don't already have the server login: | |
EXEC sp_change_users_login 'Auto_Fix', 'user', 'enter your login here', 'enter your password here' |
No comments:
Post a Comment