I Need a Logo
I've been doing the Voice of the DBA podcasts for over a year now, and I really enjoy them. I've...
2009-07-08
895 reads
I've been doing the Voice of the DBA podcasts for over a year now, and I really enjoy them. I've...
2009-07-08
895 reads
If you haven’t seen the news yet we’ve got something new on the schedule this year – a 2 hour seminar...
2009-07-08
563 reads
It was kind of amazing to see SQLServerCentral have issues over the last few days. We’re still not sure what...
2009-07-08
476 reads
A new scheme to get ATM PIN numbers using automated systems and VOIP is in play. It's described here and...
2009-07-08
287 reads
I finally made the call today to reserve my room in Baton Rouge for SQLSaturday #17 in Baton Rouge, LA....
2009-07-07
568 reads
I recently saw that Steve Jones had posted an update on his 2009 goals and realized that is was about...
2009-07-07
368 reads
It seems that I see more and more posts about people trying to shrink their transaction logs. It's getting to...
2009-07-07
1,850 reads
There are a lot of exciting events happening in the next 2 months that you should be involved in so I...
2009-07-07
822 reads
One of the things I recommend to people that are looking to get into blogging is that they write 10...
2009-07-06
353 reads
Russ Fustino from Microsoft just sent me the link to episode #3 that was filmed at SQLSaturday #14 in Pensacola....
2009-07-06
485 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