Lower Your Attack Surface Area
We all know security is important, but we sometimes make the job harder when we don't handle data appropriately.
2025-03-19
149 reads
We all know security is important, but we sometimes make the job harder when we don't handle data appropriately.
2025-03-19
149 reads
It can be hard to change peoples' habits and get them to adopt new technology.
2025-03-15
94 reads
2025-03-14 (first published: 2018-11-02)
274 reads
2025-03-12 (first published: 2018-10-19)
1,028 reads
The ways in which you might try and reverse engineer a database design are on Steve's mind today.
2025-03-10 (first published: 2018-11-30)
298 reads
Today Steve asks if you track the details of your table growth inside a database.
2025-03-07
166 reads
The job outlook for database professionals is good, but it's not that easy to get a great job. Steve has some advice for you today.
2025-03-05
217 reads
Steve has a few thoughts on natural keys, which often turn out not to be as unique as we expect.
2025-03-03
144 reads
Today Steve asks which data model issues are most annoying to you.
2025-02-28
125 reads
Steve re-posts a question from someone else, asking why you wouldn't want to use an AI.
2025-02-26
198 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...
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