Speaking at Ft. Worth SQL Server UG on Wednesday
If you’re in the Ft. Worth area next Wednesday, November 18, please join me at the Ft. Worth SQL Server...
2009-11-13
551 reads
If you’re in the Ft. Worth area next Wednesday, November 18, please join me at the Ft. Worth SQL Server...
2009-11-13
551 reads
So now that we’re 7 days removed from the end of the SQL PASS summit, I’ve finally managed to arrange...
2009-11-13
834 reads
I have been pretty busy with a server consolidation and move project at work. We had four Dell PowerEdge 6800...
2009-11-13
1,320 reads
Everyone likes to get a project done, but many times in our rush to deploy we bypass some of the...
2009-11-13
1,785 reads
Every so often I see a post in a forum or on Twitter about the use of xp_cmdshell. Usually it is someone looking for...
2009-11-13
21,109 reads
I grew up watching baseball on TV and playing it too, and for reasons I don’t recall my Dad’s favorite...
2009-11-12
538 reads
A colleague of mine pointed out a great podcast called This American Life - specifically an episode with John Hodgman (the...
2009-11-12
1,051 reads
This past Tuesday night I had the honor of speaking to a small group of college students who are all...
2009-11-12
783 reads
Thursday started off with a meeting of the SQL Saturday minds over breakfast at Top Pot Donuts a few blocks...
2009-11-12
878 reads
After quite a bit of research, I pulled the trigger on a new HP Envy 15 system last Saturday. This...
2009-11-12
1,954 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