Viewing 15 posts - 1 through 15 (of 17 total)
@david-2.gugg
Yeah that’s a really interesting point. You’re right — delayed durability is mainly a win for those rapid-fire, small commits where the log flush wait just kills throughput. With big...
August 30, 2025 at 1:21 pm
Thank you so much for taking the time to read and share your thoughts
Really appreciate your kind words — they truly made my day!
It’s always encouraging to hear from someone...
July 29, 2025 at 4:54 pm
@Jakub Janda.. Adding RCSI still cause below issues:
It doesn’t eliminate latching or I/O stalls.
It adds TempDB pressure (since row versions are stored there).
And it still doesn’t match the raw concurrency...
July 22, 2025 at 9:45 am
Hi Pascal,
Sorry for seeing your message late.. as I did not got any notification on email..
What is your system cpu? And which sql server version you are using..
This should be...
July 21, 2025 at 9:52 pm
Hi @MMartin1
Thank you — that’s a great question!
You're right that BULK_LOGGED recovery model can enable minimal logging in certain scenarios. However, unfortunately, regular UPDATE statements do not benefit from minimal...
July 21, 2025 at 9:49 pm
Hi Jeff,
Thanks for your comment..
This was 4 core I believe when I performed this testing.. As I recently upgraded it to 8 core for some further investigation
June 25, 2025 at 5:10 pm
Thank you for your response, @Eirikur Eirikisson — truly honored to have you engage.
You are absolutely right: without comparing the execution plans side-by-side, especially for MAXDOP = 0 vs. 4,...
June 25, 2025 at 5:08 pm
Thank you so much, @Brian Gale — I truly appreciate your thoughtful insights.
You’ve summarized the key takeaway better than I could. I completely agree: most of the time, query hints...
June 25, 2025 at 5:06 pm
Hi again Anders,
Since you raised some great points, let me expand a bit technically here for everyone’s benefit — and ask a few questions that might help guide tuning.
You mentioned...
June 23, 2025 at 8:37 am
Hi Anders,
Thank you
My article was about covering multiple scenarios on maxdop.. I did not said to set maxdop to 1, But I told you should try to optimise your query...
June 23, 2025 at 8:12 am
Hi William,
Yes I accept a few inconsistency which I will get rectified. But the message and step is clear.
Below are
1. Probable inconsistency: Step 1 specified "we attach a new Azure-managed...
June 12, 2025 at 4:44 am
Hi MMartin1,
We need to seed the root node first.. This has come in screenshot but not in code.
INSERT INTO @Hierarchy (ID, ParentID, Name, Level)
SELECT ID, ParentID, Name, 1
FROM HierarchyBig
WHERE ParentID...
May 26, 2025 at 6:26 am
Thanks Rama
May 17, 2025 at 3:40 am
Solid catch with that CAST —Really sometimes it's the smallest tweak that makes all the difference.
Also it came as surprise how just a VARCHAR(100) vs VARCHAR(50) can silently mess up...
May 16, 2025 at 4:01 pm
Here’s how to fix the issue with SQL Server not finding the system databases:
...
February 23, 2025 at 11:06 am
Viewing 15 posts - 1 through 15 (of 17 total)