Viewing 15 posts - 391 through 405 (of 59,048 total)
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
I did? I don't remember... I've gotten old enough where I think my harddrive is full and, every time I learn something new, either something else in...
August 8, 2024 at 10:08 pm
I'm a little late to the party due to the repost. But I look forward to reading more on this topic. We had a really terrible EAV implementation, so...
August 8, 2024 at 9:26 pm
14 YEARS ago, my god! Always makes me feel warm inside when then notification of such a blast from the past lands in my inbox.
Maybe its time not just...
August 6, 2024 at 6:32 pm
Viewing 15 posts - 391 through 405 (of 59,048 total)