Viewing 15 posts - 421 through 435 (of 59,069 total)
Duplicate post removed.
--Jeff Moden
Change is inevitable... Change for the better is not.
August 29, 2024 at 4:56 pm
select * from dbo.resolutions r where R.documentid = 828222222 and DATALENGTH(r.resolution_text) > 0
resolution_text Text column is taking More time while Querying,
Need to Replace DATALENGTH, when i replace datalength condition
as ...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 29, 2024 at 4:56 pm
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....
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
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 =...
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 19, 2024 at 3:06 am
Before you mess with those things...
... try setting the following...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 17, 2024 at 4:35 am
Also, put the variable name in a QUOTENAME() function... just to be safe two ways.
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 14, 2024 at 4:03 pm
Older but definitive article...
https://www.sommarskog.se/query-plan-mysteries.html
--Jeff Moden
Change is inevitable... Change for the better is not.
August 12, 2024 at 7:39 pm
Viewing 15 posts - 421 through 435 (of 59,069 total)