Search notes:

SQL Server: sys.trusted_assemblies

Definition of the view

The definition of the view is
exec sp_helptext

CREATE VIEW sys.trusted_assemblies AS  
 SELECT *  
 FROM OpenRowSet(TABLE TRUSTED_ASSEMBLIES)  

See also

sp_add_trusted_assembly
CLR Integration
The sys schema

Index