2015-05-26
1,815 reads
2015-05-26
1,815 reads
2014-12-01
2,270 reads
2013-10-28
2,279 reads
2013-10-14
2,477 reads
2013-08-26
2,207 reads
Check which transactions are running, query text, percent complete , query_plan, wait_type, and how long they have been running etc. - with one command.
2013-03-25 (first published: 2013-03-15)
2,312 reads
This script will show you all open transactions from any query windows.
2015-09-23 (first published: 2013-01-14)
3,868 reads
2012-11-13
2,275 reads
2012-09-04
2,679 reads
2012-06-29
2,670 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