Interesting SPAM
I’ve been Twittering about some of these, but I thought I’d condense a few for some fun today. First, a...
2009-06-05
516 reads
I’ve been Twittering about some of these, but I thought I’d condense a few for some fun today. First, a...
2009-06-05
516 reads
We’re getting closer. Coda is planning on selling a 4 door sedan in CA next year for $45k ($10k tax...
2009-06-04
455 reads
I wrote a blog about a year ago that gave some tips on basic interview questions that you may run...
2009-06-04
3,796 reads
Today Pragmatic Works release it’s first comedic training video featuring Dustin Ryan as “Dustin” and Brian Knight as “Gary” Dustin’s boss. ...
2009-06-04
621 reads
My primary development machine for the past 3 years was a 32 bit Toshiba Satellite notebook running XP named PROBE-DROID....
2009-06-04
856 reads
A few weeks ago I mentioned my blog that I would have two articles published on sswug.org. Well, they have...
2009-06-04
1,569 reads
I leave this afternoon for Pensacola and SQLSaturday #14. My daughter is traveling with me, for a short vacation with...
2009-06-04
330 reads
I will be speaking this Saturday at the SQL Saturday in Pensacola. The topic will be SSIS Best Practices and Performance Tuning. ...
2009-06-04
766 reads
I have spoken at many conferences over the years, including the PASS Community Summit and SQL Server Connections, and one...
2009-06-04
709 reads
I'm happy to announce that SQLServerCentral is sponsoring a track at this year's SQL Connections conference in Las Vegas, Nov...
2009-06-04
776 reads
By Vinay Thakur
As discussed introduction of Always Encryption blog and initial Encryption at rest as TDE...
By Vinay Thakur
Transparent Data Encryption(TDE): TDE was initially introduced in SQL Server 2008 Enterprise Edition; this...
By Steve Jones
Only a little break for me. I’m actually heading to Las Vegas today for ...
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