December 2013
Intermediate to advanced
1872 pages
153h 31m
English
As with other database objects, SQL Server provides catalog views that enable you to view loaded managed assemblies, routines, and types. The base view for finding these objects is sys.assemblies.
To see which assemblies have been loaded (including the one you created in this chapter), you use the following query:
SELECT TOP 5 name, assembly_id, permission_set_desc as permission_setFROM sys.assembliesORDER BY assembly_id descgoname assembly_id permission_set----------------------------------------------------------------SQLCLR 65719 UNSAFE_ACCESSSystem.Configuration.Install 65705 UNSAFE_ACCESS ...