2015-07-06
4,635 reads
2015-07-06
4,635 reads
References and links to help you learn how to create multiple tempdb files.
2015-06-29
3,051 reads
A few links to help you understand the Cardinality Estimator.
2015-06-29
309 reads
A list of technologies in SQL Server 2014 that you might want to learn more about.
2015-06-29
1,637 reads
A collection of technologies and links that will help you learn more about SQL Server 2012.
2015-06-25
1,395 reads
2015-06-23
7,197 reads
Our Question of the day is very popular, but we're looking for more complex questions
2014-09-08
643 reads
2014-08-21 (first published: 2014-08-19)
1,652 reads
We'd like to apologize to Gavin Draper who was plagiarized in an article published today.
2014-06-23
5,038 reads
As you may have noticed, we have been suffering recently from increased spam posts on the forums. This is something we're currently working to resolve.
2014-06-20
3,035 reads
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...
By Steve Jones
I had someone ask me about using triggers to detect changes in their tables....
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