|
Home >> FAQs/Tutorials >> SQL Server FAQ
SQL Server FAQ - "DROP LOGIN" - Deleting a Login Name
By: FYIcenter.com
(Continued from previous topic...)
How To Delete a Login Name?
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
(Continued on next topic...)
- What Is the Security Model Used in SQL Server 2005?
- What Are Security Principals Used in SQL Server 2005?
- What Is the Security Principal at the Server Level That Represents Your Session?
- What Is the Security Principal at the Database Level That Represents Your Session?
- How To Create a New Login Name in SQL Server?
- How To Verify a Login name with SQLCMD Tool?
- How To List All Login Names on the Server?
- How To Change the Password of a Login Name?
- How To Change a Login Name?
- How To Disable a Login Name?
- How To Delete a Login Name?
- How To Create a User Name in a Database?
- How To List All User Names in a Database?
- How To Find the Login Name Linked to a Given User Name?
- How To Verify a User name with SQLCMD Tool?
- How To Change the Name of a Database User?
- How To Delete an Existing Database User?
|