SQLSaturday PowerPoint Template – Looking for Suggestions
Sanj Gandham from PASS HQ set up a basic template for SQLSaturday presentations, you can download it from here. Our...
2010-04-12
736 reads
Sanj Gandham from PASS HQ set up a basic template for SQLSaturday presentations, you can download it from here. Our...
2010-04-12
736 reads
Microsoft has made the RTM bits for the various versions and components of Visual Studio 2010 available on MSDN Subscribers...
2010-04-12
335 reads
After my editorial “The Missing Certification” I was amazed at the debate that took place. As of the time I’m...
2010-04-12
993 reads
2010-04-11
1,577 reads
David Walker, the organizer of the popular Tulsa TechFest, is organizing the first annual NWA TechFest, to be held Thursday,...
2010-04-11
592 reads
This week I will have the opportunity to speak at two different events. The first is on Monday, April 12th,...
2010-04-11
446 reads
5 Random Thoughts on the SQL Server MCM Program
I've had some random thoughts running through my head since I finished...
2010-04-10
3,508 reads
Just in case you’ve just joined me, I decided on April 1 to post a different DMV query every day...
2010-04-10
1,827 reads
2010-04-10
591 reads
The DMV for Day 9 is sys.dm_os_schedulers, which is described by BOL as:
Returns one row per scheduler in SQL Server...
2010-04-09
961 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