I went silly
Well, a little silly at least. I wrote yesterday about winning a gift certificate to ThinkGeek, and wondering what to...
2009-08-24
945 reads
Well, a little silly at least. I wrote yesterday about winning a gift certificate to ThinkGeek, and wondering what to...
2009-08-24
945 reads
This is just a reminder that the call for nominations for the PASS Boards of Directors is open. The final...
2009-08-24
916 reads
Recently, we began the install of a new instance on a VMware Host and ran into an issue with a problematic outdated...
2009-08-24
965 reads
I'm committed to SQLSaturday #23 in Louisville on October 24, 2009. I got a note the other day from the...
2009-08-24
735 reads
There have been a couple odd types of corruption that I’ve been seeing on the forums. I want to take...
2009-08-24
356 reads
I'm reading through Brad McGehee'sHow to Be an Exceptional DBAand in chapter 4 he talks about having the right skill...
2009-08-24
2,426 reads
Louis Davidson (@DrSql) had an excellent series on his blog on the Pillars of Database Design and the one of...
2009-08-24
436 reads
Well, perhaps not a whole new identity, just a consolidation of multiple facets of my online persona. For several years...
2009-08-23
535 reads
Well, I had a pretty good week this week. I made an effort and met all my goals:
Eat smaller portions...
2009-08-23
357 reads
I found something interesting the other day. I was attempting to optimize a very heavy string parsing routine using T-SQL...
2009-08-23
8,671 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