Viewing 15 posts - 16 through 30 (of 708 total)
During restore, the restoring thread will take an X lock on the whole...
November 4, 2023 at 3:53 pm
I previous worked for a very large SaaS software company. Here's the approach they took, which works to solve the A vs B problem:
November 3, 2023 at 7:56 pm
With the exception of adding a step #0 to start the session, I repeated your posted steps on SQL2022 in the same order, Viewing Target Data after the CREATE DATABASE...
November 3, 2023 at 2:01 pm
Did you start the session?
ALTER EVENT SESSION [testsession] ON SERVER
STATE=START;
November 3, 2023 at 3:08 am
Is there a DDL Trigger on the CREATE LOGIN event that's blocking you, either intentionally or because of a bug in the trigger code?
SELECT * FROM sys.server_triggers
October 19, 2023 at 9:04 pm
TDE certificates don't expire (from the docs for CREATE CERTIFICATE - EXPIRY_DATE entry at https://docs.microsoft.com/en-us/sql/t-sql/statements/create-certificate-transact-sql?view=sql-server-ver15): "However, expiration is not enforced when the certificate is used for database encryption or Always...
October 12, 2023 at 1:08 am
IOCP = I/O (disk) Completion Port - After SQL Server makes an asynchronous storage request to the host OS, the OS will return data and notifications through the I/O Completion...
August 29, 2023 at 3:39 pm
CREATE STATISTICS ... WITH AUTO_DROP is only available on AzureSQLDB, Azure Managed, and SQL2022.
The package was created with the wrong target SQL Server version.
August 23, 2023 at 6:23 pm
After booting them out of the ddl_admin role, you can GRANT and DENY permissions to them directly on the Schema, which will carry through all objects within the schema. Include...
August 21, 2023 at 2:34 pm
Note: Availability Groups are Mirroring version 2.x; you can repurpose the mirrors into AGs that include an AG Listener that will redirect clients after a failover.
Convert the separate mirrors of...
August 16, 2023 at 6:11 pm
.
July 12, 2023 at 6:01 pm
There are a variety of actions you may take on a server that are prohibited in the documentation. I've dealt with several over the years in a VLDB world such...
July 12, 2023 at 6:00 pm
The encrypted data isn't affected by the hashing algorithm change, the storage of the encryption key is.
Details of the issue are listed in the KB article that introduced the trace...
May 30, 2023 at 3:32 pm
You can stop treating a normal condition as a failure that can be ignored by adding the check for primary into each step that does work that should only occur...
March 25, 2023 at 9:22 am
What was the login error, and on which of the two SQL Server instances was it recorded? The client will only receive error 18456 and no other details, but the...
March 10, 2023 at 6:19 am
Viewing 15 posts - 16 through 30 (of 708 total)