Tempdb quick notes from Professional SQL Server 2008 internals and troubleshooting
I spent sometime to understand more about tempdb today. posting some key points for our quick reference.
some key books/links on...
2012-03-15
2,278 reads
I spent sometime to understand more about tempdb today. posting some key points for our quick reference.
some key books/links on...
2012-03-15
2,278 reads
What was the number one question from today’s webcast on wait statistics? Where can the slides and sample code be...
2012-03-15
739 reads
I recently blogged about how good I thought Trello was and shortly afterwards I found out that they did provide...
2012-03-14
8,587 reads
Business users are often interested in finding distinct counts in addition to other aggregations. They may want to know the...
2012-03-14
1,249 reads
Sometimes on a heavy loaded server(many databases/connection). You may get an error log when your backup maintenance plan job gets...
2012-03-14
7,270 reads
Here’s wishing you a Happy Pi Day…
If my picture isn’t good enough, here’s a better representation of pi.
3.14159265358979323846264338327950288419716939937510
Related posts:Happy Pi...
2012-03-14
580 reads
In this modern age of technology DBA’s face an ever increasing demand from businesses; our databases must perform, be secure,...
2012-03-14
611 reads
On March 9th a tweet went out by David Fargo announcing the 2012 Idera ACE’s and my twitter handle was...
2012-03-14
611 reads
Ryan Recruiter meet Dave DBA…
As a contractor and consultant I get to speak to many agents and recruiters and over...
2012-03-14
709 reads
Someone asked the question recently about allowing a user to run a process,but not execute the individual pieces of the...
2012-03-14
4,195 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