Viewing 15 posts - 376 through 390 (of 59,038 total)
Surely if there are fewer junior developers because most of the junior work is being done by AI, there will also be fewer juniors available to become experienced developers....
August 26, 2024 at 9:07 pm
What is the correct answer?
If you tell me I'll see if I can drag it out of one of the AI sites with an improved prompt.
I'd like to hold...
August 26, 2024 at 8:16 pm
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
Viewing 15 posts - 376 through 390 (of 59,038 total)