Replication Setup:
I saw too many questions on forum asking step by step process of configuring replication I have these links in...
2009-10-28
1,129 reads
I saw too many questions on forum asking step by step process of configuring replication I have these links in...
2009-10-28
1,129 reads
Running the Profiler GUI against a production server is not something you should do. I’ve outlined my research into exactly...
2009-10-28
878 reads
If you will be attending either the 2009 PASS Community Summit in Seattle, WA, from November 2-5; or the SQL...
2009-10-27
438 reads
Do you know what determinism is? It's something that comes up periodically in Books Online as various SQL objects require...
2009-10-27
1,835 reads
After making seven presentations in Australia, I headed to New Zealand where I made four presentations in four cities, on...
2009-10-27
484 reads
While the SQLServerCentral.com forums have always been a popular way to get your SQL Server questions answered, and to participate...
2009-10-27
821 reads
I’m flying out Sunday via Alaska Air, taking the direct flight from Orlando to Seattle, arriving at 11:40 am. If...
2009-10-27
1,202 reads
It’s alive! It’s alive!
That’s enough from Colin Clive.
It’ll be out for the Summit. SQL Server Standard lives again! Although, not quite in...
2009-10-27
700 reads
It's good to see all your bright and chipper faces here at SQL University. Hopefully you've digest Monday's lesson on...
2009-10-27
6,140 reads
In my a post on Monday, I talked about who I want to meet while at the PASS Summit. Today...
2009-10-27
870 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