2020-08-18
114 reads
2020-08-18
114 reads
2020-08-17
124 reads
2020-08-15
70 reads
2020-08-14 (first published: 2016-04-28)
205 reads
2020-08-13 (first published: 2016-04-18)
520 reads
2020-08-12
261 reads
Unsecured databases are a problem, but someone is fighting this issue by wiping them out.
2020-08-11
194 reads
A ransomware attack takes down Garmin, not just the company, but also Steve's data. He has a few thoughts about what this might mean for our data.
2020-08-10
166 reads
For those of you who haven’t heard of it, MVP stands for Most Valuable Professional. Microsoft gives this award to people in the community – not employees – who help teach the community at large about their products. The award can be given in one or more of the categories such as Data Platform, AI, […]
2020-08-08
246 reads
Steve talks about working from home and finding ways to manage your work life balance.
2020-08-07
146 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