2021-12-06
394 reads
2021-12-06
394 reads
2021-04-26
502 reads
2011-07-15
2,291 reads
2010-11-09
2,483 reads
2010-07-29
2,646 reads
A Rolled back transaction will increase the snapshot sparse file usage. New author Subash brings us an examination of how those database snapshots actually work.
2010-01-07
5,194 reads
2009-08-27
2,871 reads
2009-01-16
3,130 reads
2009-01-13
2,785 reads
2008-12-30
2,821 reads
Every organization I talk to has the same problem dressed up in different clothes....
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...
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