Tagged Questions
3
votes
1answer
44 views
How do I create a CLR UDF with external name specifying namespace, class, and subclass?
I am creating a CLR UDF using external name and second level nested class names seem not to be permitted. Is this the case? When using the following syntax and including a first level class name and ...
3
votes
1answer
667 views
How to grant a user UNSAFE ASSEMBLY permission
How can we assign a user , e.g.: the database owner (DBO) the UNSAFE ASSEMBLY permission?
I'm asking it to enable a user to create an assembly and don't know the SA password, so EXEC sp_changedbowner ...
4
votes
1answer
148 views
Calling a .NET method in a SQL Server script
In the data migration process, I need to convert some columns values form the source system before writing to the target table.
I've been provided with a Csharp code which reads a string and do the ...