September 29, 2011 at 8:28 am
Is there a way to only allow CLR assemblies on specific databases rather than just an all or nothing approach?
Thanks!
September 29, 2011 at 8:41 am
since every CLR has a proc or function object, can't you create a role with DENY EXECUTE ON [each procOrfunction]?
then put all the users in that role to take the ability to use them away?
Lowell
September 29, 2011 at 8:48 am
i believe this is the possible CLR types:
select * from sys.objects where type_desc IN
('CLR_STORED_PROCEDURE',
'CLR_SCALAR_FUNCTION',
'CLR_TABLE_VALUED_FUNCTION',
'CLR_TRIGGER',
'AGGREGATE_FUNCTION')
Lowell
September 29, 2011 at 8:50 am
Sounds like a reasonable solution - not ideal but should work.
I'll post after testing.
Thanks.
Viewing 4 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply