gebeurtenis
31 mrt, 23 - 2 apr, 23
De grootste SQL-, Fabric- en Power BI-leerevenement. 31 maart – 2 april. Gebruik code FABINSIDER om $ 400 te besparen.
Zorg dat u zich vandaag nog registreertDeze browser wordt niet meer ondersteund.
Upgrade naar Microsoft Edge om te profiteren van de nieuwste functies, beveiligingsupdates en technische ondersteuning.
Applies to:
SQL Server
Unloads the specified extended stored procedure DLL from memory.
Transact-SQL syntax conventions
DBCC <dllname> ( FREE ) [ WITH NO_INFOMSGS ]
The name of the DLL to release from memory.
Suppresses all informational messages.
When an extended stored procedure is executed, the DLL remains loaded by the instance of SQL Server until the server is shut down. This statement allows for a DLL to be unloaded from memory without shutting down SQL Server. To display the DLL files currently loaded by SQL Server, execute sp_helpextendedproc
.
When a valid DLL is specified, DBCC <dllname> (FREE)
returns:
DBCC execution completed. If DBCC printed error messages, contact your system administrator.
Requires membership in the sysadmin fixed server role or the db_owner fixed database role.
The following example assumes that xp_sample
is implemented as xp_sample.dll
and has been executed. DBCC <dllname> (FREE)
unloads the xp_sample.dll
file associated with the xp_sample
extended procedure.
DBCC xp_sample (FREE);
gebeurtenis
31 mrt, 23 - 2 apr, 23
De grootste SQL-, Fabric- en Power BI-leerevenement. 31 maart – 2 april. Gebruik code FABINSIDER om $ 400 te besparen.
Zorg dat u zich vandaag nog registreert