2018-06-07
727 reads
2018-06-07
727 reads
2018-04-19
737 reads
2018-04-02
1,292 reads
Microsoft has released a version of SQL Server 2017 for Linux.
2018-03-26
2,643 reads
2018-03-13
963 reads
Transparent Data Encryption on an Availability Group and Automatic Database Seeding
2018-03-08
2,879 reads
2018-03-05
766 reads
2018-02-26
762 reads
2018-02-23
1,145 reads
2018-02-15
902 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