SQLSaturday #21 – Orlando Recap
In my previous post I discussed the week that led up to the SQLSaturday event. In this post I’ll tell...
2009-10-21
683 reads
In my previous post I discussed the week that led up to the SQLSaturday event. In this post I’ll tell...
2009-10-21
683 reads
UPDATE: I just finished up my presentation slides for this upcoming NY/NJ SQL User Group meeting, on Saturday, 10/24/2009. I may cut...
2009-10-21
938 reads
I was recently contacted by a developer with what I would consider to be a very simple question. How do...
2009-10-21
2,699 reads
I’ll be on the Twitter Bingo card along with a lot of other great SQL Server folks at Pass! Quest...
2009-10-21
573 reads
As anyone who reads this blog knows, SQLSaturday #21 – Orlando was last Saturday (Oct. 17, 2009) and as a lead...
2009-10-20
402 reads
Hi, all;
The countdown to the NY/NJ SQL Saturday event this upcoming Saturday has begun. And it's NOT TOO LATE to...
2009-10-20
547 reads
Each year at the PASS Summit I have run a party on opening night. The last 4 or 5 years...
2009-10-20
638 reads
I currently write the editorial for the PASS Connector which is published every two weeks as part of my role...
2009-10-20
533 reads
It’s easy to think of the Summit as just work, but I can tell you that you’ll have more fun...
2009-10-20
675 reads
Microsoft released Cumulative Update 6 for SQL Server 2005 SP3 yesterday (and the KB link is working today). This is...
2009-10-20
1,037 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