Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: CLR and UDF

    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 }

  • RE: How to find a table existed or not?

    --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...

Viewing 2 posts - 1 through 2 (of 2 total)