Viewing post 1 (of 1 total)
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...
December 28, 2012 at 1:06 am
#1572029