Viewing post 1 (of 1 total)
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
...
April 20, 2015 at 7:57 am
#1792030