The following example produces a report of the users in the current database
and their
security identifiers (SIDs).
In the following example, a database user is associated with a new SQL Server
login.
Database user MB-Sales, which at first is
mapped to another login, is remapped to login MaryB.
The following example shows how to use Auto_Fix to
map an existing user to a login of the same name,
or to create the SQL
Server login Mary that has the password B3r12-3x$098f6 if the login Mary does
not exist.
EXECUTE [master].[dbo].[sp_change_users_login]
@Action = '<Action,varchar(10),Update_One>',
@UserNamePattern = N'<UserName,sysname,>',
@LoginName = N'<LoginName,sysname,>',
@Password = NULL;