MSDTC Supported Configurations
The MSDTC Configuration Conundrum MSDTC configuration is not as straight forward as you might think. It’s a different choice if...
2018-07-12 (first published: 2018-07-06)
1,814 reads
The MSDTC Configuration Conundrum MSDTC configuration is not as straight forward as you might think. It’s a different choice if...
2018-07-12 (first published: 2018-07-06)
1,814 reads
Configure SQL Server Failover Cluster Instance If you are running a SQL Server Failover Cluster Instance on premises and looking to migrate to Azure, you might be a little...
2018-07-06
16 reads
Configure SQL Server Failover Cluster Instance If you are running a SQL Server Failover Cluster Instance on premises and looking to migrate to Azure, you might be a little...
2018-07-06
4 reads
Configure SQL Server Failover Cluster Instance If you are running a SQL Server Failover Cluster Instance on premises and looking to migrate to Azure, you […]
The post Configure SQL...
2018-07-06
4 reads
The MSDTC Configuration Conundrum MSDTC configuration is not as straight forward as you might think. It’s a different choice if you are using a local MSDTC, clustered MSDTC, on-premises,...
2018-07-06
6 reads
The MSDTC Configuration Conundrum MSDTC configuration is not as straight forward as you might think. It’s a different choice if you are using a local […]
The post MSDTC Supported...
2018-07-06
1 reads
What is a Domain Independent Cluster? Did you know that you can have a Windows cluster that is a domain...
2018-07-05
528 reads
What is a Domain Independent Cluster? Did you know that you can have a Windows cluster that is a domain independent cluster and run a SQL Server Availability Group...
2018-07-05
4 reads
What is a Domain Independent Cluster? Did you know that you can have a Windows cluster that is a domain independent cluster and run a […]
The post Domain Independent...
2018-07-05
6 reads
What is a Read-Scale Availability Group? A Read-Scale Availability Group is a Clusterless Availability Group. It’s sole purpose and design...
2018-07-05
661 reads
By John
In a recent video, I took a hands-on look at the Next Gen General...
By Rohit Garg
India’s 2025 tax reforms have introduced a bold shift in how income is taxed,...
In today’s Software Development Life Cycle (SDLC), having a robust build pipeline is very...
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