I have got a user in my database that hasn\'t got an associated login. It seems to have been created without login.
Whenever I attempt to connect to the database with t
sp_change_users_login is deprecated.
sp_change_users_login
Much easier is:
ALTER USER usr1 WITH LOGIN = login1;