2025-01-01
71 reads
2025-01-01
71 reads
2024-12-25
79 reads
2024-11-27
89 reads
2024-09-02
52 reads
2024-07-05
138 reads
2024-04-12
133 reads
Today is a day off from Redgate for Steve, but he's working elsewhere on this holiday.
2024-02-19
86 reads
Happy New Year from Steve, with a reminder to work on your career plan for 2024.
2024-01-01
77 reads
2023-12-25
49 reads
2023-11-24
427 reads
By Ed Elliott
All Spark Connect Posts I have just finished an update for the spark connect dotnet...
By Steve Jones
One of the things I’ve been experimenting with in AI is taking things other...
By Steve Jones
I’ll be at SQL Bits tomorrow, Saturday Jun 20, 2025 for the final day...
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...
We are in the process of upgrading to SQL Server 2022 and would like...
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