In SQL Server there are situations when you need to import assemblies to perform a specific task
For doing that you need to write the path where assembly is present and provide the permissions to the assembly and associating with the particular user.
SQL will only allow to import those assemblies which have definition for it
CREATE ASSEMBLY AddNumber AUTHORIZATION himanshu
FROM 'C:\CLR\MyAssembly.dll'
WITH PERMISSIONSET = SAFE
0 Comment(s)