After Seven Years, Time for Something New
Earlier this month, I passed the seven year mark at Digineer. It was a weird feeling, since the last time...
2012-09-14
709 reads
Earlier this month, I passed the seven year mark at Digineer. It was a weird feeling, since the last time...
2012-09-14
709 reads
Wouldn’t it be nice if failure was an option? You could go along in life, screw it all up and...
2012-09-12
772 reads
It appears that I signed up to speak at the San Diego SQL Saturday coming up this weekend. I knew...
2012-09-11
694 reads
This post is part of a blog series which focuses on translating compatibility views in SQL Server to their respective...
2012-09-07
1,167 reads
As I sat around this past weekend I was left wondering… am I missing any good blogs out there? With...
2012-09-03
895 reads
It’s close to that time of year again. It’s time for a SQL Saturday in Minnesota and this… it isn’t...
2012-08-28
942 reads
This post is part of a blog series which focuses on translating compatibility views in SQL Server to their respective...
2012-08-22
1,229 reads
It’s been a year already and it’s time to head back to Kalamazoo for their SQL Saturday. We’re heading back...
2012-08-21
919 reads
The August round of #meme15 finished up last week with a good number of people participating. The aim of the...
2012-08-21
740 reads
A while back, Kevin Conan (Blog | @ConanTheCDN) emailed me about this months #meme15 topic. He thought it would be good...
2012-08-20
1,029 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