Viewing 15 posts - 1,816 through 1,830 (of 7,608 total)
To save space, COMPRESS the body (and other very long columns). This process is rather slow, but it typically does save a lot of space.
And, using triggers, you can make...
March 4, 2021 at 2:55 pm
It's more likely a bug in the app. When it gets the result set from the temp table, what does the app do with it?
March 3, 2021 at 7:39 pm
Is it possible to exit the proc without falling thru to the DROP TABLE? What about the start of the proc? If the temp table already exists,...
March 3, 2021 at 5:10 pm
Is it possible to exit the proc without falling thru to the DROP TABLE? What about the start of the proc? If the temp table already exists, does...
March 3, 2021 at 5:08 pm
I can't see how presence of existing TEMP table would cause a problem as
CREATE TABLE #ReportResults (dateStamp dateTime NOT NULL, dataInterval int)
would then fail.
longshot : But ... maybe it...
March 3, 2021 at 4:04 pm
If .Net developers can't figure out how to use a CASE statement, then train them better or get developers who can.
I don't think I'd blame this on...
March 3, 2021 at 3:57 pm
So why did you just re-ask the exact same q?? Via q "Appttime add with duration how to get endtime please".
March 3, 2021 at 3:52 pm
Duplicate q. See q "Please help to get duration between two 4 or 3 character string" in this same thread.
March 3, 2021 at 3:51 pm
A MERGE join requires input data sets that are sorted in the same order. SQL decided it was better to sort one (or more) of the input sets so that...
March 3, 2021 at 3:50 pm
SQL Express is limited to 1.4GB of RAM. I'm stunned that 12,000 connections could even be initiated in that little RAM. You need to have most of those requests somehow...
March 3, 2021 at 3:46 pm
Is it possible to exit the proc without falling thru to the DROP TABLE? What about the start of the proc? If the temp table already exists, does...
March 3, 2021 at 2:14 am
Is it possible to exit the proc without falling thru to the DROP TABLE?
What about the start of the proc?
If the temp table already exists, does the proc scratch (drop...
March 2, 2021 at 9:20 pm
The other issue with IIF is that it can be nested only 10 deep. I do have some CASE conditions that have (far) more than 10 WHEN conditions. It would...
March 2, 2021 at 9:15 pm
Make sure the proc is dropping or truncating the temp table every time at the start of the proc.
It sounds as if rows from the prior run are being left...
March 2, 2021 at 8:56 pm
I think we are, and hooray! for that. From what I've read, at least, the STRING_AGG performs well.
I have only one box on 2017 right now, many on 2016 (and,...
March 2, 2021 at 8:07 pm
Viewing 15 posts - 1,816 through 1,830 (of 7,608 total)