Skip to content

Latest commit

 

History

History
67 lines (50 loc) · 2.34 KB

sys-sp-drop-trusted-assembly-transact-sql.md

File metadata and controls

67 lines (50 loc) · 2.34 KB
title description author ms.author ms.reviewer ms.date ms.service ms.subservice ms.topic f1_keywords helpviewer_keywords dev_langs monikerRange
sys.sp_drop_trusted_assembly (Transact-SQL)
Drops an assembly from the list of trusted assemblies on the server.
VanMSFT
vanto
randolphwest
07/06/2023
sql
system-objects
reference
sp_drop_trusted_assembly_TSQL
sp_drop_trusted_assembly
sys.sp_drop_trusted_assembly_TSQL
sys.sp_drop_trusted_assembly
sys.sp_drop_trusted_assembly
TSQL
>=sql-server-2017 || >=sql-server-linux-2017 || =azuresqldb-mi-current

sys.sp_drop_trusted_assembly (Transact-SQL)

[!INCLUDE sqlserver2017-asdbmi]

Drops an assembly from the list of trusted assemblies on the server.

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

Syntax

sp_drop_trusted_assembly
    [ @hash = ] 'value'
[ ; ]

Arguments

[ @hash = ] 'value'

The SHA2_512 hash value of the assembly to drop from the list of trusted assemblies for the server. Trusted assemblies may load when CLR strict security is enabled, even if the assembly is unsigned or the database isn't marked as trustworthy.

Remarks

This procedure removes an assembly from sys.trusted_assemblies.

Permissions

Requires membership in the sysadmin fixed server role or CONTROL SERVER permission.

Examples

The following example drops an assembly hash from the list of trusted assemblies for the server.

EXEC sp_drop_trusted_assembly
    0x8893AD6D78D14EE43DF482E2EAD44123E3A0B684A8873C3F7BF3B5E8D8F09503F3E62370CE742BBC96FE3394477214B84C7C1B0F7A04DCC788FA99C2C09DFCCC;

Related content