Google CIO and IT Strategy
CIO Magazine has a interesting article about Douglas Merrill, the CIO of Google. One of the things he dicusses in...
2007-11-26
1,698 reads
CIO Magazine has a interesting article about Douglas Merrill, the CIO of Google. One of the things he dicusses in...
2007-11-26
1,698 reads
For the page 10 months or so I've been using a Samsung Blackjack, before that I used various Blackberries for...
2007-11-21
1,427 reads
Maybe someone at MS can explain this; they have that nice dialog that comes up after a reboot where you...
2007-11-21
1,403 reads
The SQL Server community has a new event to attend in local markets. The Orlando Users Group put on SQL Saturday recently and here's a short look at how this event came about, and how you might run your own event.
2007-11-21
726 reads
I wrote up some more notes (in addition to what's available here on the blog) to try to raise the...
2007-11-21
1,373 reads
I had dinner with Wes Dumey and Pam Shaw from Tampa last night to share some lessons learned and hear...
2007-11-20
1,383 reads
I've got a request in to PASS asking them to release 2 of the many sessions that were presented at...
2007-11-19
1,334 reads
You may not think of DDJ for database info and I'll admit that what they do cover is often a...
2007-11-15
1,426 reads
Visit the blog of Joe Healy, my favorite MS Developer Evangelist to see some pics from SQLSaturday. Joe is amazingly...
2007-11-15
1,350 reads
From SQL Server trainer and guru Andy Warren, he are a few short nuggets that you might not realize about triggers.
2007-11-13
8,610 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