Viewing post 1 (of 2 total)
I used this function with data pasted from a column or data from excel. Short of some additional error checking it is a handy techique:
declare @str varchar(max)
select @str =
'line1
line2
line3
line4'
SELECT...
December 17, 2009 at 1:38 pm
#1093743