Sql Server Drop User Statement

SQL Server: DROP USER statement

In this post explains how to use the SQL Server DROP USER statement with syntax and examples.

Description

The DROP USER statement is used to remove a user from the SQL Server database.

Syntax

The syntax for the DROP USER statement in SQL Server (Transact-SQL) is:

DROP USER user_name;

Parameters or Arguments

user_name

The name of the user to remove from the SQL Server database.

Note

  • Before you can drop a user, you must delete objects owned by the user or transfer ownership of those objects.
  • See also the CREATE USER statement.

Example

Let's look at how to drop a user using the DROP USER statement in SQL Server.

For example:

DROP USER AODBA;

This DROP USER example would drop the user called AODBA. This DROP USER statement will only run if AODBA does not own any objects in the SQL Server database.