Re-Awarded MVP Status for 2010
I have been re-awarded MVP status for SQL Server for 2010. It's a humbling honor, and I will strive again...
2010-01-01
933 reads
I have been re-awarded MVP status for SQL Server for 2010. It's a humbling honor, and I will strive again...
2010-01-01
933 reads
I woke up this morning, late, after a great New Year’s Eve with friends. Too tired to get out of...
2010-01-01
332 reads
I woke up this morning, late, after a great New Year’s Eve with friends. Too tired to get out of...
2010-01-01
347 reads
Well, it's been an interesting year. I got to teach four different brand new SQL Server courses, and teach classes...
2009-12-31
1,342 reads
Well, I set 7 professional goals for 2009 and I did okay in meeting them, but I was not successful...
2009-12-31
1,385 reads
Last year I wrote about my goals for 2009. Yesterday I looked over them and evaluated my performance. I think...
2009-12-31
1,901 reads
I took some time off in December and I'm finally getting around to catching up on RSS feeds. Turns out...
2009-12-31
1,515 reads
I'm going to conclude this series on running a small user group with a topic that came up for discussion earlier...
2009-12-31
1,405 reads
I'll close out 2009 with an update on the goals I set at the beginning of this year and things...
2009-12-31
1,395 reads
Introduction
Tonight on Twitter the call went out on #SqlHelp looking for a way to script just database permissions for a...
2009-12-31
1,428 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