2020-12-14
138 reads
2020-12-14
138 reads
2020-12-12
324 reads
Today is a day for reflections in Steve's life, looking back at the incredible year of 2020.
2020-12-11
107 reads
As legal requirements grow and change, cloud computing might require a new consideration: where we physically store data.
2020-12-10
159 reads
Steve wonders if any of you see much of a difference between any of the virtual events taking place today.
2020-12-09
87 reads
The annual Advent of Code challenge is underway, and you can use it to help grow your career.
2020-12-08
227 reads
Today Steve notes that we often don't have all the knowledge or information we need, but we can work to acquire it.
2020-12-07
104 reads
Today Steve looks at legacy systems and the challenges they pose as we try to adapt them to new requirements.
2020-12-05
205 reads
SSMS is, well, it's what we mostly have from Microsoft. It's been around a long time, but it is getting regularly released. There are new versions about every quarter, and there are bug fixes and minor enhancements. Azure Data Studio appears to be where Microsoft would like most of us to move, but I, and […]
2020-12-04
302 reads
Can you catch minor code changes that might cause issues? Steve advocates for more testing to ensure you can.
2020-12-03
112 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