2020-10-28
162 reads
2020-10-28
162 reads
IBM is breaking up and Steve thinks back about the evolution of the company and where they might go from here.
2020-10-27
114 reads
SQL Server shares some data with Microsoft, but the use is documented. Steve sees this as a model for how companies might share information.
2020-10-26
250 reads
The term DevOps gets horribly abused. Don’t get me started on all the weird additions to it like DevSecOps. No, I just mean the term itself gets beaten up quite a lot. It’s to the point where people are starting to shy away from talking about it. I’ve even changed my approach when discussing DevOps […]
2020-10-24
167 reads
How much do you love technology? Is this reflected in a budget? Let us know this week.
2020-10-23 (first published: 2016-10-21)
150 reads
Today we have a guest editorial from Alice Smith as Steve is away. Conflict can be good in a highly functional team, as noted today from the manager of the publishing group at Redgate Software.
2020-10-22 (first published: 2016-10-13)
192 reads
Steve Jones looks a little more closely at the Azure SQL Data Warehouse, perhaps a viable choice for many of us.
2020-10-21 (first published: 2016-07-14)
278 reads
Today we have a guest editorial as Steve is out of town at the PASS Summit. Grant looks at disasters and being prepared.
2020-10-20 (first published: 2016-10-24)
238 reads
Phil Factor's manual for taming machines, applications, and other wild beasts.
2020-10-17
132 reads
Steve asks what you might want to achieve or accomplish in your career.
2020-10-16
240 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