Re: SQL2000-user not grantable to login



"Michael Epprecht [MSFT]" <michael.epprecht@xxxxxxxxxxxxxxxxxxxx> ha scritto

Hello

sp_change_users_login is your friend here. It will re-synchronize the DB
User ID with that of the SQL Server Login of the same name.

USE FOC
GO
EXEC sp_change_users_login 'Auto_Fix', 'dbm'
GO

GREAT! Thx, it works!

Fritz


.