Viewing 15 posts - 1 through 15 (of 113 total)
Why not creating a NONCLUSTERED Index on the datetime column and "walk in small batches" through the table.
Small chunks of data prevent LOCK ESCALATION and you can run it smoothly...
November 7, 2025 at 2:29 pm
SELECT r.session_id, s.text
FROM sys.dm_exec_requests AS r
CROSS APPLY sys.dm_exec_sql_text(r.sql_handle) AS s
WHERE r.status = 'running';
This will work. The author used the wrong aliases 🙂
BTW: I would not check for...
October 28, 2025 at 3:58 pm
Hey Leo,
your assumption is correct. This is an indicator of an Clustered Index Creation or Clustered Index REBUILD. This pattern (INSERT INTO MyTable SELECT * FROM MyTable) is an internal...
October 3, 2025 at 3:11 pm
I am here with Brian Gale. For me it is more a commercial than a technical post.
I would love to see the incoming statements on the database side.
e.g.
January 27, 2024 at 8:43 am
I suspect that you wanted to describe something else with your article but not the benefits of MIXED vs. UNIFORM extents.
January 10, 2024 at 7:50 am
Although this topic came quite late to my attention it is more actual than ever. I see lots of people favorite sequential INT/BIGINT as PK but - as Jeff has...
July 24, 2020 at 8:29 am
Hi Stuart,
WHY would you not recommend partitioned heaps? Can you give reasons for your rejection?
July 10, 2020 at 10:45 am
Hi Steve,
I trapped into the pitfall and didn't see that the last query was not using any predicate 🙂
If you use a query with a predicate it will create a...
July 9, 2019 at 7:30 am
Although this article is over 3 years old I came around by accident today. Very interesting and - to be honest - I didn't had it on the focus so...
May 11, 2018 at 2:30 am
Hi Jeff,
THREADPOOL is definitely a problem of a heavy used system with lots of requests at the same time. To fight against it I would of course check the...
December 19, 2017 at 6:22 am
Hi Kev,
" Can anyone explain the discrepancy between max_workers_count and the calculation as I presented it here?"
You can set the max number of threads manually (basically not...
December 19, 2017 at 5:36 am
November 3, 2017 at 6:59 am
Thank you David,
i can only repeat the others; very interesting. I will definitly use this as a good example for uneven configured multiple database files 🙂
November 3, 2017 at 3:00 am
Thank you all for your positive feedback.
I love to create QotD with a bit more "substance" from my real world experiences.
I will try to write more of them in the...
January 6, 2017 at 10:43 am
MMullane-222251 (1/5/2017)
Uwe, do you have a test showing that creating a Clustered Index wouldn't improve the execution plan?
Hi,
of course you can test it with a clustered index on one or...
January 5, 2017 at 1:49 pm
Viewing 15 posts - 1 through 15 (of 113 total)