Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Tally OH! An Improved SQL 8K “CSV Splitter” Function

    Hi Jeff,

    Can you please test your new functions' performance against the following function :

    CREATE FUNCTION [dbo].[ParseString]

    (

    @String VarChar(8000),

    @Delimiter VarChar(1)

    ) RETURNS TABLE

    AS

    RETURN

    (

    WITH Tokens(LinePos, StartPos, EndPos) AS...

Viewing post 1 (of 1 total)