2014-01-15
2,000 reads
2014-01-15
2,000 reads
2013-12-03
1,920 reads
2013-07-17
2,930 reads
2011-09-13
2,201 reads
2010-10-12
2,961 reads
2010-08-26
3,855 reads
2010-06-25
3,957 reads
2009-02-17
4,818 reads
2008-12-25
4,628 reads
2008-05-29
3,932 reads
By Steve Jones
SQL Bits 2025 was amazing, as always. It’s been my favorite conference to attend,...
Here’s how these tools can make Kubernetes security easier and help you avoid common...
By Steve Jones
lackout – n. the sudden awareness that you’re finally over someone, noticing that the...
Comments posted to this topic are about the item Shades and Reflecting on SQLBits...
In Azure SQL DB, i want to merge records from the staging table to...
Full error message: SSRS error: The Value for the image 'Image1' has a constant...
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