Viewing 15 posts - 1 through 15 (of 268 total)
good discussion here: https://stackoverflow.com/questions/15138593/nvarchar-concatenation-index-nvarcharmax-inexplicable-behavior
relevant section to this application:
Even without ORDER BY, we do not guarantee that @var = @var + will produce the concatenated value for any statement...
August 17, 2021 at 4:12 pm
I seem to recall that this sort of thing is sometimes discouraged:
SELECT @catlist = @catlist + COALESCE(p.ProductCategory1, p.ProductCategory2, 'NA') + ', '
FROM dbo.Product AS...
August 16, 2021 at 1:26 pm
You could be correct, but I am frustrated by the obscure nature of the failure (the null reference), the lack of documentation around the issue and the fact that VS...
April 10, 2019 at 6:19 pm
January 11, 2019 at 12:55 pm
December 14, 2018 at 7:42 am
October 4, 2018 at 7:02 am
Louis Davidson (@drsql) - Saturday, September 8, 2018 2:37 PMComments posted to this topic are about the item Is Forgiveness Possible?
I've...
September 12, 2018 at 7:31 am
August 21, 2018 at 11:03 am
August 7, 2018 at 11:53 am
August 7, 2018 at 8:36 am
June 7, 2018 at 9:06 am
June 7, 2018 at 8:44 am
June 7, 2018 at 6:56 am
instead of: conn.ConnectionString = "Data Source=.\\sqlexpress;Initial Catalog=tempdb;Integrated Security=True";
this is an option: conn.ConnectionString = @"Data Source=.\sqlexpress;Initial Catalog=tempdb;Integrated Security=True";
or even:conn.ConnectionString =...
May 8, 2018 at 11:53 am
Viewing 15 posts - 1 through 15 (of 268 total)