Nuta
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować się zalogować lub zmienić katalog.
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować zmienić katalogi.
Removes the internal representation of the XML document specified by the document handle and invalidates the document handle.
[!UWAGA]
A parsed document is stored in the internal cache of SQL Server. The MSXML parser (Msxmlsql.dll) uses one-eighth the total memory available for SQL Server. To avoid running out of memory, run sp_xml_removedocument to free up the memory.
Transact-SQL Syntax Conventions
Składnia
sp_xml_removedocument hdoc
Arguments
- hdoc
Is the handle to the newly created document. A handle that is not valid returns an error. hdoc is an integer.
Return Code Values
0 (success) or >0 (failure)
Permissions
Requires membership in the public role.
Examples
The following example removes the internal representation of an XML document. The handle to the document is provided as input.
EXEC sp_xml_removedocument @hdoc
Zobacz także
Odwołanie
System Stored Procedures (Transact-SQL)
XML Stored Procedures (Transact-SQL)