Viewing 2 posts - 1 through 2 (of 2 total)
Hi, we've had similar problems with collations across different data sources, but have also found one bonus. As part of the validation for data imports we check for personal info...
October 11, 2007 at 3:48 am
#741112
You could also try the COALESCE function. I've found it handy for CSV building.
This assumes that tk_number is a varchar, you may have to CAST(tk_number as varchar) otherwise.
DECLARE @List varchar(2000)
SELECT...
August 16, 2004 at 4:54 am
#519060