Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Check if Function EXISTS before adding

    Check IF Exist For Function

     IF  EXISTS (SELECT TOP 1 1 FROM sys.objects WHERE 
                object_id = OBJECT_ID(N'[Schema].[function_Name]')
                            AND type in (N'FN', 

Viewing post 1 (of 1 total)