2015-04-24 (first published: 2015-04-15)
1,203 reads
2015-04-24 (first published: 2015-04-15)
1,203 reads
2009-05-07 (first published: 2009-03-27)
1,608 reads
Quick & Easy way to kill connections to specific database
2007-07-27 (first published: 2006-11-10)
867 reads
2006-10-26 (first published: 2006-08-25)
868 reads
By DataOnWheels
I am delighted to host this month’s T-SQL Tuesday invitation. If you are new...
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...
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