Notes from SQLSaturday #21 – Part 3
I thought I’d finish up the notes by listing things that went well and not so well:
Jack Corbett really helped...
2009-10-22
539 reads
I thought I’d finish up the notes by listing things that went well and not so well:
Jack Corbett really helped...
2009-10-22
539 reads
There has been quite a discussion today on the direction of PASS (the Professional Association for SQL Server) and some...
2009-10-22
679 reads
Anyone who has an Internet connection has kept up with PASS-related news during the past couple of weeks is keenly...
2009-10-22
777 reads
I’ve been wanting to write this for a while, but have been waiting for the board elections to close. Lots...
2009-10-22
843 reads
Eric Wisdahl posted some questions on my last update, and I thought I’d reply here to make my answers more...
2009-10-22
795 reads
Well, the event is over and the Event Evaluations have been tabulated. I’ve already posted my week leading up to...
2009-10-22
360 reads
I hate to start a blog war, but maybe there's one going on. The recent PASS 2009 election concluded a...
2009-10-22
1,836 reads
Yesterday, Jonathan Kehayias wrote in his blog post " Have you got air in your spare.." about dealing with a flat...
2009-10-22
360 reads
The PASS Summit agenda is shaping up and it’s already looking to be much busier than last year. The latest...
2009-10-21
554 reads
No, I’m not talking about a Dickens novel. I’m talking about the number of characters in a string. I had...
2009-10-21
1,639 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