|
Home >> FAQs/Tutorials >> SQL Server FAQ
SQL Server FAQ - "DROP USER" - Deleting a Database User
By: FYIcenter.com
(Continued from previous topic...)
How To Delete an Existing Database User?
If you don't want to keep a database user any more, you should
delete the user by using the "DROP USER" statement.
This tutorial exercise shows how to delete "Dba_User":
-- Login with "sa"
USE FyiCenterData;
GO
DROP USER Dba_User;
GO
-- List all user names
SELECT name, sid, type, type_desc
FROM sys.database_principals WHERE type = 'S';
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
User "Dba_User" has been deleted now.
- 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?
|