Renaming Domain User Accounts and SQL
user (jsmith). had access several databases. user got married , changed name(jhelp). don't have access of databases. did rename within windows renaming user id. user still has rights groups , access windows files/folders/application work except applications call sql database.
why can not rename user account?
ffalcon1961
which version of sql server running? in sql server 2005 , should able use alter login command make change since sid of windows login has not changed.
alter login [domain\jsmith] name = [domain\jhelp];
i remember trying in earlier version of sql server, similar reason, , had delete login sql server , re-add new name.
rlf
SQL Server > SQL Server Security
Comments
Post a Comment