Minimalist Design - Part 3
One of the labs I frequently do with students is to design a database for a training business, something which...
2009-05-27
1,452 reads
One of the labs I frequently do with students is to design a database for a training business, something which...
2009-05-27
1,452 reads
Tomorrow night, May 28th, I'll be speaking the Augusta Developer's Guild. This is a make-up from earlier in the year...
2009-05-27
1,380 reads
I have a new machine, albeit one with a bad video card, running Windows 2008 Server R2 with Hyper-V. My...
2009-05-27
1,525 reads
A great Hyper-V blog here at Accentient Blog.
I was searching around for information on setting up Hyper-V and I...
2009-05-26
1,313 reads
I had the video card go bad in my new desktop, so I spent a few minutes rolling back to...
2009-05-26
666 reads
I'm flying up Friday afternoon to participate in SQLSaturday #7 which is being led by John Baldwin and his team...
2009-05-26
1,350 reads
A lot of people have asked what happened over the Memorial Day weekend as SQLServerCentral was down. All I can...
2009-05-26
1,585 reads
This week I'm in Brno, Czech Republic leading an App Compat seminar for Microsoft clients here, and one of the...
2009-05-26
480 reads
Wes is a friend acquiring via networking and community involvement - another success story! He's based in Tampa and has been...
2009-05-25
561 reads
I've been using Snarfer for a while now, preferring an offline reader so that I use a few spare moments...
2009-05-25
739 reads
By HeyMo0sh
Learning any kind of theory is easy, but adapting FinOps and watching it rescue...
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...
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