Open In App

Drop login in SQL Server

Last Updated : 18 Aug, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

The DROP LOGIN statement could be used to delete an user or login that used to connect to a SQL Server instance.

Syntax –

DROP LOGIN loginname;
GO 

Permissions :
The user which is deleting the login must have ALTER ANY LOGIN permission on the server.

Note –
A login which is currently logged into SQL Server cannot be dropped.

If you try to drop login which is currently using SQL Server, the DROP LOGIN statement will raise below error.

Drop failed for Login “loginname”

Let us assume, we have created below login:

CREATE LOGIN geeks  
WITH PASSWORD = ‘gEe@kF0rG##ks’; 

Below example shows how to use DROP LOGIN statement in SQL Server.

Example –

DROP LOGIN geeks; 

DROP LOGIN used in above example would delete the login called geeks from SQL server. This DROP LOGIN statement will only run if geeks is not the current user.


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads