2023-08-14
409 reads
2023-08-14
409 reads
2021-03-18
684 reads
2019-11-19
1,260 reads
2018-10-30
797 reads
2016-08-30
1,386 reads
2016-08-22
1,428 reads
2016-08-08
1,383 reads
2016-07-27
1,535 reads
If you have job that opens a transaction and hangs too long causing a Prod issue this will be a big help to let you know.
2016-04-22 (first published: 2016-03-30)
715 reads
2019-05-03 (first published: 2015-09-13)
1,924 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