Worse Before Better
We need to approach software development with a balance of making things better, and ensuring they work.
2021-12-08
224 reads
We need to approach software development with a balance of making things better, and ensuring they work.
2021-12-08
224 reads
2021-12-06
330 reads
The Advent of Code is live, and Steve finds it to be a fun way to take a break during your day.
2021-12-04
295 reads
While relational developers and administrators might always want to use a database, that might not be the case for those that analyze data. Steve suggests you help them see the value of a database platform.
2021-12-03
494 reads
Lessons learned from building a database caught Steve's eye, and he has a few comments.
2021-12-01
617 reads
2021-11-29
200 reads
I'm writing this the day after the US holiday of Thanksgiving. Lots of things are said about Thanksgiving, positive, negative, in between. The core concept of the holiday is to take a moment to take stock of what you have. It's a good idea. Every so often, look around and acknowledge, depending on anyone's situation, […]
2021-11-27
107 reads
2021-11-26
197 reads
2021-11-24
261 reads
Building software is hard, and our systems are very complex these days.
2021-11-22
375 reads
By alevyinroc
Ten years (and a couple jobs) ago, I wrote about naming default constraints to...
By Steve Jones
We have multiple teams (8) working on Redgate Monitor. Some work on the Standard...
By HeyMo0sh
Learning any kind of theory is easy, but adapting FinOps and watching it rescue...
Comments posted to this topic are about the item The day-to-day pressures of a...
Comments posted to this topic are about the item The Problem Isn't Always Your...
Comments posted to this topic are about the item Identity Defaults
What happens when I run this code?
CREATE TABLE dbo.IdentityTest
(
id int IDENTITY(10) PRIMARY KEY,
somevalue VARCHAR(20)
)
GO
See possible answers