Viewing 15 posts - 1 through 15 (of 20 total)
Snippet from the Microsoft Biztalk whitepaper on lock preallocation. https://msdn.microsoft.com/en-us/library/Bb743398(v=BTS.10).aspx#BKMK_SQLSvrTuning
Pre-allocating SQL Server memory has many advantages. The overhead of dynamic management, particularly under high stress growth, is avoided. Pre-allocated memory...
July 24, 2015 at 10:13 am
Stewart "Arturius" Campbell (11/7/2014)
Try using the DMV'se.g.select * from sys.dm_exec_requests
Yes, but that is instantaneous, I want to aggregate the impact over time. And yes I could insert dm_exec_reguests...
November 7, 2014 at 7:39 am
Thanks for the quick response!
I was thinking if I wanted to try a bit more sophistication on a per filegroup basis: allocate a new filegroup, sized correctly based on sp_spaceused...
October 20, 2014 at 8:29 am
So that's exactly what I'm trying to sort out. The inline function had 2000 page reads so appears to be RBAR, but less CPU. Harder to tell with...
August 21, 2014 at 9:16 am
Erland Sommarskog (7/19/2013)
And I would have appreciated to get everything in one script.
Apologies, I gathered these around midnight local time, and this simple idea of a single file completely escaped...
July 19, 2013 at 9:17 pm
Scripts attached. Did you want ALL indexes for EACH monthly shard as well? They should all be identical. I have only included JUL2013 indexes, but here are...
July 18, 2013 at 8:54 pm
Got it, thanks for clarifying. I was missing the fact my simple test is not actually reproducing the problem behavior.
July 18, 2013 at 1:33 pm
I think we're now saying the same thing, and admittedly I am probably abusing the word "logical", but here's what I mean.
If I open a new query window and run...
July 18, 2013 at 1:21 pm
I think I have it figured out. I needed to understand that sys.dm_tran_active_transactions shows logical transactions, and sys.dm_tran_database_transactions is showing actual "physical presence" of transactions. As such I...
July 18, 2013 at 12:24 pm
Thanks! So that would explain my busted testing methodology.
Maybe I've made some faulty assumptions about the root cause of the lack of log truncation. What I was seeing...
July 18, 2013 at 10:52 am
TheSQLGuru (7/16/2013)
I think another of the root causes is that DPVs just never got any real loving from the product team and haven't had much attention in many years I...
July 17, 2013 at 6:16 am
The optimizer is completing with FULL optimization, and the plan hashes match on subsequent runs.
I think the FORCESEEK hint is the what got me over the hump and is of...
July 17, 2013 at 6:13 am
UPDATE: For anyone that may encounter a similar issue.
I've dug a bit deeper, and I think what is happening is that sometimes the generated query plan undergoes partition elimination...
July 16, 2013 at 1:06 pm
I appreciate the response, and yes I don't expect someone to volunteer for a remote DBA session and solve my problem for free. I just tried to flesh out...
July 16, 2013 at 10:58 am
Syed Jahanzaib Bin hassan (4/20/2011)
and use this new JDBC driver 2.0 by...
April 20, 2011 at 10:47 am
Viewing 15 posts - 1 through 15 (of 20 total)