Skip to content

Latest commit

 

History

History
71 lines (56 loc) · 2.36 KB

drop-signature-transact-sql.md

File metadata and controls

71 lines (56 loc) · 2.36 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic f1_keywords helpviewer_keywords dev_langs
DROP SIGNATURE (Transact-SQL)
DROP SIGNATURE (Transact-SQL)
VanMSFT
vanto
03/06/2017
sql
t-sql
reference
DROP SIGNATURE
DROP_SIGNATURE_TSQL
deleting signatures
dropping signatures
DROP SIGNATURE statement
removing signatures
signatures [SQL Server]
digital signatures [SQL Server]
TSQL

DROP SIGNATURE (Transact-SQL)

[!INCLUDE SQL Server Azure SQL Database Azure SQL Managed Instance]

Drops a digital signature from a stored procedure, function, trigger, or assembly.

:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions

Syntax

DROP [ COUNTER ] SIGNATURE FROM module_name   
    BY <crypto_list> [ ,...n ]  
  
<crypto_list> ::=  
    CERTIFICATE cert_name  
    | ASYMMETRIC KEY Asym_key_name  

Arguments

module_name
Is the name of a stored procedure, function, assembly, or trigger.

CERTIFICATE cert_name
Is the name of a certificate with which the stored procedure, function, assembly, or trigger is signed.

ASYMMETRIC KEY Asym_key_name
Is the name of an asymmetric key with which the stored procedure, function, assembly, or trigger is signed.

Remarks

Information about signatures is visible in the sys.crypt_properties catalog view.

Permissions

Requires ALTER permission on the object and CONTROL permission on the certificate or asymmetric key. If an associated private key is protected by a password, the user also must have the password.

Examples

The following example removes the signature of certificate HumanResourcesDP from the stored procedure HumanResources.uspUpdateEmployeeLogin.

USE AdventureWorks2022;  
DROP SIGNATURE FROM HumanResources.uspUpdateEmployeeLogin   
    BY CERTIFICATE HumanResourcesDP;  
GO  

See Also

sys.crypt_properties (Transact-SQL)
ADD SIGNATURE (Transact-SQL)