DBCC dllname DBCC dllname
Unload a DLL from memory.
Syntax
DBCC dllname (FREE) [ WITH NO_INFOMSGS ]
Key:
dllname - Name of the DLL to release from memory.
WITH NO_INFOMSGS - Suppress all information messages.
When an extended stored procedure is executed, the DLL will remain loaded until the server is shut down (or DBCC dllname is used to unload it)
Example
DBCC xp_my_stored_proc (FREE) |