2024-01-16 (first published: 2024-01-12)
531 reads
2024-01-16 (first published: 2024-01-12)
531 reads
2023-11-13
418 reads
2022-07-13
553 reads
2021-01-26
597 reads
2019-12-17
603 reads
2019-12-02
624 reads
This article will show how you can read the @@OPTIONS variable and determine your settings.
2021-01-08 (first published: 2019-11-14)
8,213 reads
2018-09-20
835 reads
2018-08-13
704 reads
2018-02-19
951 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