DROP CERTIFICATE (Transact-SQL)
Removes a certificate from the database.
Syntax
DROP CERTIFICATE certificate_name
Arguments
Remarks
Certificates can only be dropped if no entities are associated with them.
Permissions
Requires CONTROL permission on the certificate.
Examples
The following example drops the certificate Shipping04 from the AdventureWorks database.
USE AdventureWorks2012; DROP CERTIFICATE Shipping04;
See Also