All Tags »
Performance »
T-SQL »
Architecture (RSS)
Sorry, but there are no more tags available to filter with.
-
Originally posted here.
Yeah, yeah, yeah, let's get this out of the way right from the start:
Don't concatenate rows into delimited strings in SQL Server. Do it
client side.
Except if you really have to create delimited strings in SQL Server. In which case you should read on.
There was a little discussion on SQLTeam
about the best ...