Viewing 15 posts - 16 through 30 (of 709 total)
You're working too hard. You can do decimal math on datetime values; 1.0 = one full day, 0.5 = 12 hours, etc:
SELECT getdate() AS [Now], getdate() +...
Eddie Wuerch
MCM: SQL
November 15, 2023 at 7:22 am
ADF feels like 'the next version of SSIS, but in the cloud', IMHO. SSIS/SSDT are free; if you have access to materials to help you learn the on-prem tools, then...
Eddie Wuerch
MCM: SQL
November 6, 2023 at 9:23 pm
During restore, the restoring thread will take an X lock on the whole...
Eddie Wuerch
MCM: SQL
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:
Eddie Wuerch
MCM: SQL
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...
Eddie Wuerch
MCM: SQL
November 3, 2023 at 2:01 pm
Did you start the session?
ALTER EVENT SESSION [testsession] ON SERVER
STATE=START;
Eddie Wuerch
MCM: SQL
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
Eddie Wuerch
MCM: SQL
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...
Eddie Wuerch
MCM: SQL
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...
Eddie Wuerch
MCM: SQL
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.
Eddie Wuerch
MCM: SQL
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...
Eddie Wuerch
MCM: SQL
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...
Eddie Wuerch
MCM: SQL
August 16, 2023 at 6:11 pm
.
Eddie Wuerch
MCM: SQL
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...
Eddie Wuerch
MCM: SQL
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...
Eddie Wuerch
MCM: SQL
May 30, 2023 at 3:32 pm
Viewing 15 posts - 16 through 30 (of 709 total)