Collections:
"DROP LOGIN" - Deleting a Login Name in SQL Server
How To Delete a Login Name in SQL Server?
✍: FYIcenter.com
If you don't want to keep a login name any more, you should delete it by using the "DROP LOGIN" statement as shown in this tutorial example:
-- Login with "sa" DROP LOGIN Dba_Login; GO Command(s) completed successfully. -- View login names SELECT name, sid, type, type_desc FROM sys.server_principals WHERE type = 'S'; GO name sid type type_desc -------- ----------------------------------- ---- --------- sa 0x01 S SQL_LOGIN FYI_DBA 0x348AF32B3B58CB40B67A5F5B7086B96E S SQL_LOGIN
⇒ "CREATE USER" - Creating a User Name in a Database in SQL Server
⇐ "ALTER LOGIN" - Disabling a Login Name in SQL Server
2016-10-19, 2951🔥, 0💬
Popular Posts:
What Is Transport Network Substrate (TNS) in Oracle? TNS, Transport Network Substrate, is a foundati...
How To Query Tables and Loop through the Returning Rows in MySQL? The best way to query tables and l...
How To Count Rows with the COUNT(*) Function in SQL Server? If you want to count the number of rows,...
How To List All Login Names on the Server in SQL Server? If you want to see a list of all login name...
What Is Transport Network Substrate (TNS) in Oracle? TNS, Transport Network Substrate, is a foundati...