2015-12-23
1,528 reads
2015-12-23
1,528 reads
2015-12-22
1,525 reads
2015-12-18
1,603 reads
2015-12-15
1,566 reads
2015-12-08
1,428 reads
2015-12-04
1,684 reads
2015-12-01
1,634 reads
2015-11-25
1,180 reads
2015-11-20
1,808 reads
2015-11-18
1,432 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