ASSEMBLYPROPERTY

statements
#tsql#statements

Syntax

ASSEMBLYPROPERTY ( 'assembly_name' , 'property_name' )

Return Type

sql_variant

Property Descriptions

PropertyReturn TypeDescription
CultureInfonvarcharName of the culture for the assembly.
PublicKeyvarbinaryPublic key of the assembly.
MvIDintAssembly version ID.
VersionMajorintMajor version number of the assembly.
VersionMinorintMinor version number of the assembly.
VersionBuildintBuild version number of the assembly.
VersionRevisionintRevision version number of the assembly.

Remarks

Returns information about assembly properties.

Example

SELECT ASSEMBLYPROPERTY('database_name', 'CultureInfo') AS CultureInfo;