Data Driven Subscription Workaround
A guide for getting around the missing data driven subscription feature in Standard editions of Microsoft SQL Server.
2016-08-29
7,564 reads
A guide for getting around the missing data driven subscription feature in Standard editions of Microsoft SQL Server.
2016-08-29
7,564 reads
A how-to guide for configuring replication agents after a password change
2016-08-02
7,505 reads
In today’s Software Development Life Cycle (SDLC), having a robust build pipeline is very...
By Steve Jones
I had someone ask me about using triggers to detect changes in their tables....
By Kevin3NF
Things your cloud vendor may not tell you Here’s a common theme I...
Comments posted to this topic are about the item How to Choose the Right...
Comments posted to this topic are about the item Adding Defaults
Comments posted to this topic are about the item Multiple Monitoring Tools
I have a table, called dbo.logger, in SQL Server 2022. I decide to add two new columns to this table with this code.
ALTER TABLE dbo.logger ADD CreateDate DATETIME CONSTRAINT dfGetDate DEFAULT GETDATE() GO ALTER TABLE dbo.logger ADD ModifyDate DATETIME DEFAULT dfGetDate GOWhat happens when I run these two batches? See possible answers