Viewing 15 posts - 1 through 15 (of 492 total)
I've found the root case of this problem. We have a weekly process that analyses the databases for sensitive data - Data Classification, a few minutes after it starts we...
May 25, 2026 at 4:19 am
After a restart of the Subscriber, this error cleared up. It looks like something was cached that was causing this, and the restart flushed it.
I'm still no wiser on what...
May 20, 2026 at 8:35 pm
I'm aware that Update Stats is triggered at the table level, but I was hoping someone knew of a system based fix. This seems a weakness in the update stats...
April 2, 2026 at 4:08 am
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
Viewing 15 posts - 1 through 15 (of 492 total)