Living With Broken Software
Steve has to use software that is broken, but it's OK. It actually works well enough.
2023-04-03
111 reads
Steve has to use software that is broken, but it's OK. It actually works well enough.
2023-04-03
111 reads
Learn about how you can work with your SQL Server data from C#. A good basic tutorial for beginning C# developers.
2023-03-24
15,338 reads
Do you have a set of practices for building software in your organization?
2023-02-17
194 reads
Helping your business get value from a digital transformation can start within your own team or group.
2023-02-08
101 reads
2023-02-06 (first published: 2023-02-04)
231 reads
Building software means not only considering the data people expect, but also edge cases. Steve asks if you know what those edge cases are?
2022-11-14
249 reads
Our design and modeling is often done with some level of uncertainty. Steve has a few guidelines today.
2022-10-26
169 reads
2022-10-24
187 reads
2022-10-17
98 reads
Building software is becoming harder as new attacks try to inject malicious code into products.
2022-10-12
119 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