Viewing 2 posts - 1 through 2 (of 2 total)
IF your code are correct, you may fix up the problem with 'aseembly permmistion_set'
CREATE ASSEMBLY assembly_name
from
WITH PERMISSION_SET = { SAFE | EXTERNAL_ACCESS | UNSAFE }
January 24, 2008 at 8:42 pm
#771574
--1. using function of object_id
if object_id('object_name') is not null begin
print 'Exist'
end else begin
print 'Not exist'
end
--2. using sys.objects & exists function
if exists(select...
January 15, 2008 at 2:13 am
#768005