Viewing 15 posts - 1 through 15 (of 488 total)
I found the issue, and the restriction isn't at the CPU level.
It turns out the server is memory constrained, with PLE over the index optimization period dropping below 60 seconds...
November 4, 2024 at 9:02 pm
This issue is resolved. There are internal upgrade changes made to all the user databases when upgrading to SQL 2022 (I would assume other versions as well), but these don't...
April 11, 2024 at 2:59 am
I get the stats from the DMV
-- Lots of select logic
FROM sys.dm_io_virtual_file_stats(NULL, NULL) AS a
INNER JOIN sys.master_files AS b
...
December 6, 2021 at 7:29 pm
I've resolved the problem of some commands not returning all elements. I'm now using:
$jsonDBList = $jsonObj.Databases|select ServerName, name, CompatibilityLevel | Format-Table
August 5, 2021 at 4:56 am
The error message is certainly misleading, but when you look at the TABULAR result, the reason for the error is clear. There simply isn't any free space to reclaim. You...
August 5, 2021 at 4:49 am
While you can't set this at a DB or Server level, it's pretty simple to run code across every table to compress it. The basic command is:
ALTER TABLE TableName REBUILD...
August 5, 2021 at 4:27 am
One question I have about your script is does it handle offline instances?
At the moment the input for the script is a file with a list of servers, so I...
May 26, 2021 at 3:20 am
Well it's not actually possible to install the shared features twice, so this definitely isn't the problem. Also, I've already done all the core testing, at this point I'm testing...
May 25, 2021 at 8:06 pm
Thanks Ken for pointing me to this article https://docs.microsoft.com/en-us/dynamicsax-2012/developer/optimistic-concurrency-control
Close reading indicates that while you can have Global Optimistic Concurrency Control, it is possible to set Pessimistic Control at a...
March 22, 2021 at 2:23 am
A follow on of what I have found. There are a lot of SELECT....with (UPDLOCK) commands. Since the database is already set for Read Committed Snapshot Isolation (to reduce deadlocks,...
March 12, 2021 at 4:13 am
No, at least not WRT the tables where I'm seeing blocking. Most of the clustered indexes are now PARTITIONID, DATAAREAID, TableSpecificID. Typically bigint, nvarchar, bigint.
One issue I have is that...
March 12, 2021 at 3:56 am
Thanks for the reply. There's a bit of confusion around this. It turns out the client downloaded the SQL Patch files from WSUS (Windows Server Update service) and this seems...
September 22, 2020 at 8:28 pm
Thanks for the reference.
Oh, it's not my company, I've been brought in to consult on some other problems, and the use of the Version Store cropped up as...
May 26, 2020 at 3:56 am
Thanks for the reference.
Please don't EVER tell me to RTFM, especially given that I mentioned I'd done a bunch of reading. I've been searching for a reference like this for...
May 25, 2020 at 10:11 pm
Further to this post, I have another post regarding CMEMTHREAD Waits, which is the same client (https://www.sqlservercentral.com/forums/topic/cmemthread-waits-2)
The database is 3.6TB, and their indexes are seriously fragmented, even the clustered...
May 15, 2020 at 1:56 am
Viewing 15 posts - 1 through 15 (of 488 total)