DROP DATABASE SCOPED CREDENTIAL (Transact-SQL)

**APPLIES TO:** ![no](media/no.png)SQL Server ![yes](media/yes.png)Azure SQL Database ![yes](media/yes.png)Azure SQL Data Warehouse ![no](media/no.png)Parallel Data Warehouse

Removes a database scoped credential from the server.

Topic link icon Transact-SQL Syntax Conventions

Syntax

  
DROP DATABASE SCOPED CREDENTIAL credential_name  

Arguments

credential_name
Is the name of the database scoped credential to remove from the server.

Remarks

To drop the secret associated with a database scoped credential without dropping the database scoped credential itself, use ALTER CREDENTIAL.

Information about database scoped credentials is visible in the sys.database_scoped_credentials catalog view.

Permissions

Requires ALTER permission on the credential.

Examples

The following example removes the database scoped credential called SalesAccess.

DROP DATABASE SCOPED CREDENTIAL AppCred;  
GO  

See Also

Credentials (Database Engine)
CREATE DATABASE SCOPED CREDENTIAL (Transact-SQL)
ALTER DATABASE SCOPED CREDENTIAL (Transact-SQL)
sys.database_scoped_credentials
CREATE CREDENTIAL (Transact-SQL)
sys.credentials (Transact-SQL)