Thread: SQL Server 2005
View Single Post
  #15 (permalink)  
Old 10-16-2007, 01:41 AM
kingmaker kingmaker is offline
D-Web Genius
 
Join Date: Jun 2007
Posts: 882
kingmaker is on a distinguished road
Send a message via Yahoo to kingmaker
Default 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;
__________________
The KINGMAKER
Makes Every Thing Possible

Stuffs (My Blog)
Reply With Quote