What Three Things Brought Me Here
I was tagged
by SQL Rockstar, aka Tom LaRock, after this
thread was started by Paul Randal-not-Paul-Tripp (I wonder if...
2010-01-18
2,056 reads
I was tagged
by SQL Rockstar, aka Tom LaRock, after this
thread was started by Paul Randal-not-Paul-Tripp (I wonder if...
2010-01-18
2,056 reads
I read this book as a kid, or at least I thought I did. After grabbing this from Amazon (free...
2010-01-17
831 reads
I woke up this morning to find Tia reading an actual paper books. That’s become a rarity for both of...
2010-01-17
716 reads
I woke up this morning to find Tia reading an actual paper books. That’s become a rarity for both of...
2010-01-17
679 reads
I have just put together the January newsletter for www.gre-sqlserver-solutions.com and scheduled it to run Sunday night/Monday morning. It is...
2010-01-16
699 reads
Microsoft and Prometric have renewed their Second Shot promotion for certification exams. This allows you to retake a failed exam...
2010-01-16
908 reads
Back in October, I ordered one of the new TED 5000 energy monitors directly from Energy, Inc. in Charleston, SC....
2010-01-16
822 reads
As a father of two head-strong boys (inherited trait), I struggle with getting them to admit they are wrong when they...
2010-01-15
1,012 reads
Since quite a few PASS 2009 speakers have gone public with their speaker evaluation scores, I might as well do...
2010-01-15
772 reads
This will be a very short entry. I just wanted to share a few things I learned very quickly while...
2010-01-15
867 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