Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Remove comments from the SQL Code

    /*

    No Limitations

    Please refer mentioned below function to remove comments in String.

    */

    CREATE FUNCTION [dbo].[Ufn_Remove_Comments] (@definition VARCHAR(MAX))

    RETURNS @TblDefinition TABLE

    (

    Definition VARCHAR(MAX)

    )

    AS

    BEGIN

    /*

    Author : Rajesha Soratoor

    Purpose : Returns text with out any comments...

Viewing post 1 (of 1 total)