snippetsqlMinor
How to grant a user UNSAFE ASSEMBLY permission
Viewed 0 times
userpermissiongrantunsafeassemblyhow
Problem
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
Any idea?
Thank you.
I'm asking it to enable a user to create an assembly and don't know the SA password, so
EXEC sp_changedbowner ‘sa’ can't help.Any idea?
Thank you.
Solution
Only users mapped to a login that's a member of the sysadmin fixed server role can create and alter an assembly with an UNSAFE permission set defined. Therefore, to achieve your desired result you would have to add that respective login to the sysadmin fixed server role.
BOL reference on CREATE ASSEMBLY:
Specifying
BOL reference on CREATE ASSEMBLY:
Specifying
UNSAFE enables the code in the assembly complete freedom to perform operations in the SQL Server process space that can potentially compromise the robustness of SQL Server. UNSAFE assemblies can also potentially subvert the security system of either SQL Server or the common language runtime. UNSAFE permissions should be granted only to highly trusted assemblies. Only members of the sysadmin fixed server role can create and alter UNSAFE assemblies.Context
StackExchange Database Administrators Q#28047, answer score: 8
Revisions (0)
No revisions yet.