2008-12-26
2,993 reads
2008-12-26
2,993 reads
I'm sure some of the geeks out there are logging onto the web, checking feeds, and whiling away some of...
2008-12-25
1,393 reads
Steve Jones wishes the SQLServerCentral community a Merry Christmas and Happy Holiday!
2008-12-25
20 reads
2008-12-25
3,350 reads
As we try and evolve our automotive industry, and perhaps our energy policy, to move into the future in the...
2008-12-24
1,487 reads
2008-12-24
160 reads
2008-12-24
3,032 reads
2008-12-24
144 reads
2008-12-24
133 reads
2008-12-24
119 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