ASYMKEY_ID (Transact-SQL)
In this article
Applies to:
SQL Server
Azure SQL Database
Azure SQL Managed Instance
SQL database in Microsoft Fabric
Returns the ID of an asymmetric key.
Transact-SQL syntax conventions
ASYMKEY_ID ( 'Asym_Key_Name' )
Asym_Key_Name
The name of an asymmetric key in the database.
int
Requires appropriate permission(s) on the asymmetric key, and requires that the caller has not been denied VIEW permission on the asymmetric key. See CREATE ASYMMETRIC KEY (Transact-SQL) for more information about asymmetric key permissions.
This example returns the ID of asymmetric key ABerglundKey11
.
SELECT ASYMKEY_ID('ABerglundKey11');
GO
CREATE ASYMMETRIC KEY (Transact-SQL)
ALTER ASYMMETRIC KEY (Transact-SQL)
DROP ASYMMETRIC KEY (Transact-SQL)
SIGNBYASYMKEY (Transact-SQL)
VERIFYSIGNEDBYASYMKEY (Transact-SQL)
Encryption Hierarchy
sys.asymmetric_keys (Transact-SQL)
Security Catalog Views (Transact-SQL)
ASYMKEYPROPERTY (Transact-SQL)
KEY_ID (Transact-SQL)