Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Split String Function

    I recommend on this function(much better performance,Do it by XML query):

    CREATE FUNCTION dbo.uf_SplitStringsToTable_XML

    (

    @List NVARCHAR(MAX),

    @Delimiter NVARCHAR(255)

    )

    RETURNS TABLE

    AS

    ...

Viewing post 1 (of 1 total)