ASSEMBLYPROPERTY (Transact-SQL)
SQL Server 2008
Returns information about a property of an assembly.
The following example assumes that the SQL Server Database Engine samples are installed on the local computer and the HelloWorld assembly is registered in the AdventureWorks database. For more information, see Hello World Sample.
USE AdventureWorks;
GO
SELECT ASSEMBLYPROPERTY ('HelloWorld' , 'PublicKey');
