2024-01-22
325 reads
2024-01-22
325 reads
2022-07-20
443 reads
2019-09-05
609 reads
Learn how to load an external certificate into SQL Server to encrypt your backups.
2019-04-25
4,523 reads
You may need to drop and recreate your certificates after migrating from SQL 2012 to SQL 2016+
2018-07-23
2,946 reads
2015-02-25
1,455 reads
How to sign stored procedures with certificates, this is useful if the procedures use dynamic SQL.
2010-06-21
11,365 reads
By alevyinroc
Ten years (and a couple jobs) ago, I wrote about naming default constraints to...
By Steve Jones
We have multiple teams (8) working on Redgate Monitor. Some work on the Standard...
By HeyMo0sh
Learning any kind of theory is easy, but adapting FinOps and watching it rescue...
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