The Importance of Database Coding Standards
I was working with a developer the other day and the question came up
of how to return status from a...
2006-08-17
1,825 reads
I was working with a developer the other day and the question came up
of how to return status from a...
2006-08-17
1,825 reads
OK, it's been a long time since I made an entry here, mostly because I've been busy and keep forgetting...
2006-08-15
1,413 reads
2006-08-09
2006-08-09
1,408 reads
2006-08-09
1,325 reads
2006-08-09
1,353 reads
2006-08-09
1,368 reads
2006-08-09
522 reads
2006-08-09
497 reads
2006-08-09
1,335 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