Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.26 KB

unloading-an-extended-stored-procedure-dll.md

File metadata and controls

28 lines (22 loc) · 1.26 KB
title description author ms.author ms.date ms.service ms.topic helpviewer_keywords
Unloading an Extended Stored Procedure DLL
Unloading an Extended Stored Procedure DLL
VanMSFT
vanto
03/14/2017
sql
reference
extended stored procedures [SQL Server], unloading
unloading extended stored procedures

Unloading an Extended Stored Procedure DLL

[!INCLUDE SQL Server]

Important

[!INCLUDEssNoteDepFutureAvoid] Use CLR Integration instead.

[!INCLUDEmsCoName] [!INCLUDEssNoVersion] loads an extended stored procedure DLL as soon as a call is made to one of the functions of the DLL. The DLL remains loaded until the server is shut down or until the system administrator uses the DBCC statement to unload it. For example, this command unloads the xp_hello.dll, allowing the system administrator to copy a newer version of this file to the directory without shutting down the server:

DBCC xp_hello(FREE)  

See Also

DBCC dllname (FREE) (Transact-SQL)