Blogs
One of the suggestions I saw today was to add blogs to the user profile on the site and not...
2007-07-05
646 reads
One of the suggestions I saw today was to add blogs to the user profile on the site and not...
2007-07-05
646 reads
I wrote an article recently on the Journey To Katmai, looking at some of the new features that are coming...
2007-07-04
662 reads
Breaking Up is Easy to DoHardIt's nice to be able to package a process into a single, tidy, elegant query,...
2007-07-03
602 reads
Some of you younger DBA’s out there may not know who Neil Sedaka is or remember his poignant words "Breaking...
2007-07-03
613 reads
Most people I know tend to work in one of two places consistently: work or home. So they've built a...
2007-07-03
570 reads
This is pretty cool, a, earthquake test for Project Black Box from Sun. They take one of their systems to...
2007-07-01
632 reads
The active SQL Server error log is one of the first places people look when there is a problem. For...
2007-06-29
1,594 reads
No, I'm not going to keep making corny references to war and being a soldier. But in many ways, we...
2007-06-29
1,338 reads
I have the best job here at SQLServerCentral.com. I work from home, I get to be creative, writing about what...
2007-06-28
1,374 reads
My friend and former co-worker Chris Rock just posted at article over at SQLTeam.com that has a pretty good walk...
2007-06-27
1,366 reads
Every organization I talk to has the same problem dressed up in different clothes....
By DataOnWheels
I am delighted to host this month’s T-SQL Tuesday invitation. If you are new...
By alevyinroc
Ten years (and a couple jobs) ago, I wrote about naming default constraints to...
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