Common Language Runtime Related Dynamic Management Views (Transact-SQL)
from http://www.sqlserverspecialists.com/2013/03/common-language-runtime-related-dynamic.html
Useful for understanding and troubleshooting CLR objects executing within SQL Server. CLR objects are cached for better performance after they are used and are not destroyed immediately. CLR objects are unloaded only when SQL Server comes under memory pressure.
Returns a row for each AppDomain, the unit of isolation for an application running in .NET, running on the server.
SQL Server creates one AppDomain per database per owner so that all CLR objects are always executed in the same AppDomain.
Returns a row for each managed user assembly, i.e. managed code DLL files, loaded into the server address space.
Returns a row for each property of a CLR assembly available to the system, such as the CLR version, current state of the hosted CLR, or the CLR install directory.
Returns a row for all currently running CLR tasks.
PERMISSIONS:
Requires VIEW SERVER STATE permission on the server.
小小菜鸟一枚
浙公网安备 33010602011771号