When did this statement start?
UPDATE: This post is incorrect. Adam nailed it in the comments. I explain my mistake here.
A question came up over...
2009-07-28
1,875 reads
UPDATE: This post is incorrect. Adam nailed it in the comments. I explain my mistake here.
A question came up over...
2009-07-28
1,875 reads
… and by government data, I mean the mountain of data recently made available by the G-Men on Data.gov. This site...
2009-07-28
1,343 reads
We (Brian, Steve, and I) provided hosting for SQL chapters going way back…maybe 2002 or 2003, on behalf of PASS....
2009-07-27
534 reads
I saw an article from Certification Magazine recently (via Trainsignal on twitter)
with that title. It compared the completion of certification...
2009-07-27
1,947 reads
Can't make the PASS summit? Or maybe you're going but looking for something whet your appetite between now and November....
2009-07-27
754 reads
I'm giving a presentation at SQLSaturday in South Florida on August 8th 2009. If you haven't been to a SQLSaturday,...
2009-07-27
466 reads
Sometime in the next couple weeks will mark the beginning of the 30 day period where we accept nominations for the...
2009-07-26
1,000 reads
Steve Lane and team from Tallahassee are hosting their annual Code Camp on Sep 5, 2009, and have asked if...
2009-07-26
658 reads
Although PowerShell is best suited for console applications there are times when a GUI interface just makes sense, however hand cranking...
2009-07-25
4,114 reads
Steve Jones, through a series of comments, emails, blackmail, back-alley deals & tons of whining, agreed to let me review a...
2009-07-24
570 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