Viewing 15 posts - 406 through 420 (of 59,066 total)
To date, I'm the least impressed with BING AutoPilot and Claude 3.5 Sonnet. I'm especially disappointed in Claude 3.5 Sonnet because it doesn't seem to provide references like the others...
August 26, 2024 at 6:49 pm
posting the query plan as a zip.
Neither of those are an "Actual" execution plan. They're both "Estimated". While that's close, it misses certain nuances. It does appear...
August 25, 2024 at 1:43 pm
I know you are after how to estimate X - that is not really a good way to go as there are way to many unknowns, and without looking...
August 22, 2024 at 1:26 pm
I have nothing good to say about SQL Server 2022. Any benefits have been outweighed by things like you describe and some seriously slow running code. MS broke things starting...
August 22, 2024 at 8:47 am
This is the query with the plan (names have been changed):
DECLARE @DateColumn DATE = '2024-07-01';
DELETE s
FROM [Schema].TableName s
INNER JOIN #WorkingTable q
ON q.Column1 =...
August 22, 2024 at 8:04 am
This won't tell you if a table is "empty" or not but it will tell you if it has been used by users since the last restart or not. I...
August 19, 2024 at 4:31 am
Please post the Actual Execution plan for the DELETE of just ONE row. Attach the ACTUAL execution plan so we can take a look at it. A graphic of the...
August 19, 2024 at 3:06 am
Before you mess with those things...
... try setting the following...
August 17, 2024 at 4:35 am
Also, put the variable name in a QUOTENAME() function... just to be safe two ways.
August 17, 2024 at 4:28 am
Lordy. My apologies. I just noticed that the table you posted has no Clustered Index.
I have to assume that you're not rebuilding the HEAP with Ola's Code, correct?
Also, you said...
August 14, 2024 at 4:03 pm
August 12, 2024 at 7:39 pm
TBH, I'd call MS Support on this one.
August 12, 2024 at 7:28 pm
Preaggregation sounds familiar 🙂
Heh... it sure does. Here's page 44 from that presentation.
Every time I use the term, I try to...
August 10, 2024 at 11:59 pm
Awww man!! Keep coming west Jeff! Would love to see you make it to Orange County, CA one of these days.
Thank you kindly for the encouraging words but the...
August 10, 2024 at 9:37 pm
Hi we run 2019 standard. one of our mfg locations requires somewhat precise start and end param times along with the start and end dates controlling how an ssrs...
August 9, 2024 at 5:01 pm
Viewing 15 posts - 406 through 420 (of 59,066 total)