DROP CERTIFICATE SQL Server 2005 DROP CERTIFICATE
Remove a certificate from the database.
Syntax:
DROP CERTIFICATE certificate_name
certificate_name
Name of the certificate
Certificates can only be dropped if no entities are associated with them.
Requires CONTROL permission on the certificate.
Examples
USE MyDatabase;
DROP CERTIFICATE MyCert01; |