Multiple Monitoring Tools
Steve wonders if it is worth it to use multiple monitoring systems for a database.
2025-06-20
47 reads
Steve wonders if it is worth it to use multiple monitoring systems for a database.
2025-06-20
47 reads
Computer network security is important, and it's something we ought to be more concerned with as data professionals.
2025-06-20 (first published: 2019-06-18)
285 reads
Today Steve wonders how many of you might be looking forward to SQL Server 2025 and consider it to be a major release.
2025-06-18
126 reads
If you have had to fix the thing you just fixed with a fix, you might enjoy today's editorial.
2025-06-16
77 reads
Steve talks a bit about the choice to ask for a raise in the current climate.
2025-06-14
66 reads
Today Steve talks about the concept of what a failure is when deploying changes.
2025-06-13
43 reads
2025-06-11 (first published: 2019-05-24)
462 reads
Steve talks about the process of decision making with idea for shortening the time taken.
2025-06-09
70 reads
Steve looks back at the Mythical Man Month, a book every software engineer and manager should read.
2025-06-06
94 reads
2025-06-04
86 reads
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...
By Ed Elliott
All Spark Connect Posts I have just finished an update for the spark connect dotnet...
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