Collections:
"ALTER USER" - Changing the Name of a Database User in SQL Server
How To Change the Name of a Database User in SQL Server?
✍: FYIcenter.com
If you want to change the name of an existing database user, you can use the "ALTER USER" statement as shown in the tutorial exercise below:
-- Login with "sa" USE FyiCenterData; GO ALTER USER Fyi_User WITH NAME = Dba_User; GO -- List all user names SELECT name, sid, type, type_desc FROM sys.database_principals WHERE type = 'S'; GO name sid type type_desc -------------------- ------------------------ ---- --------- dbo 0x01 S SQL_USER guest 0x00 S SQL_USER INFORMATION_SCHEMA NULL S SQL_USER sys NULL S SQL_USER Dba_User 0x5EB8701EAEBAA74F86F... S SQL_USER
The of the last user changed from "Fyi_User" to "Dba_User".
⇒ "DROP USER" - Deleting a Database User in SQL Server
⇐ Verifying a User Name with SQLCMD Tool in SQL Server
2022-01-24, 6488🔥, 0💬
Popular Posts:
How To Change the Name of a Database User in SQL Server? If you want to change the name of an existi...
How To Start Instance with a Minimal Initialization Parameter File in Oracle? The sample initializat...
How to obtain the version number of the ICU (International Components for Unicode) library using the...
How To Find Out What Privileges a User Currently Has in Oracle? Privileges granted to users are list...
How To Start the Command-Line SQL*Plus in Oracle? If you Oracle server or client installed on your w...