Click to Rate and Give Feedback
MSDN
MSDN Library
SQL Server
SQL Server 2008
Database Engine
Technical Reference
 sp_droplogin (Transact-SQL)

  Switch on low bandwidth view
Community Content
In this section
Statistics Annotations (0)
Other versions are also available for the following:
SQL Server 2008 Books Online (June 2009)
sp_droplogin (Transact-SQL)

Removes a SQL Server login. This prevents access to an instance of SQL Server under that login name.

ms189767.note(en-us,SQL.100).gifImportant:
This feature will be removed in a future version of Microsoft SQL Server. Avoid using this feature in new development work, and plan to modify applications that currently use this feature. Use DROP LOGIN instead.

Topic link icon Transact-SQL Syntax Conventions

sp_droplogin [ @loginame = ] 'login'
[ @loginame = ] 'login'

Is the login to be removed. login is sysname, with no default. login must already exist in SQL Server.

0 (success) or 1 (failure)

sp_droplogin calls DROP LOGIN.

sp_droplogin cannot be executed within a user-defined transaction.

Requires ALTER ANY LOGIN permission on the server.

The following example uses DROP LOGIN to remove the login Victoria from an instance of SQL Server. This is the preferred method.

DROP LOGIN Victoria;
GO
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker