We’re Like the Zoo
Actually we’re not quite like the Denver Zoo, which is open every day of the year. The zoo in Virginia...
2009-12-24
782 reads
Actually we’re not quite like the Denver Zoo, which is open every day of the year. The zoo in Virginia...
2009-12-24
782 reads
I usually use all the problems, crashes, and issues that I run into at work as grist for my mill,...
2009-12-23
654 reads
If you have been putting off ordering your copy of "SQL Server MVP Deep Dives", now is your chance to...
2009-12-23
475 reads
On Monday, Intel officially announced the next generation Atom processors (aka Pineview) that are part of the new Pine Trail...
2009-12-23
570 reads
I just found out that I’ve been accepted to speak at SQLSaturday #32 – Tampa on January 23, 2010. My session...
2009-12-23
372 reads
You learn a lot when teaching someone else, whether that be writing articles or books or actually teaching a class....
2009-12-23
662 reads
Windows 7 just dropped off the network, acting like a cable had been unplugged. I rebooted the machine after trying...
2009-12-23
666 reads
I noticed a post recently from Bru Medishetty on Striped Backups. I commented, but thought I should explain a little...
2009-12-23
3,700 reads
I have always liked information presented to me in lists. Lists are simple, straight-forward, and to the point. If you...
2009-12-23
627 reads
Have not tried this yet, but had it bookmarked to share, the TruLink Wireless USB to VGA will send video...
2009-12-23
723 reads
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...
By Steve Jones
We have multiple teams (8) working on Redgate Monitor. Some work on the Standard...
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