Final Preparations for SQLSaturday #8 on October 25th, 2008
I suspect final preparations will stretch all the way through next Saturday morning, but at this point we've done most...
2008-10-19
499 reads
I suspect final preparations will stretch all the way through next Saturday morning, but at this point we've done most...
2008-10-19
499 reads
I’ve thought this for a long time: you need to run your business as a business, not an investment. Too...
2008-10-19
880 reads
I have two speaking engagements for the week of October 19:
South Florida SQL Server User Group - West Palm Beach - October...
2008-10-18
693 reads
I've had a bunch of writings based on finances over the last couple weeks, and I've tried to spread them...
2008-10-17
660 reads
Why, when you can help others, that's when!
In my role as a senior Moderator with the MSDN SQL Forums, I am often...
2008-10-17
455 reads
I was teaching a private class recently that had both DBA's and network types in the room, one of the...
2008-10-16
821 reads
I've just recently acquired a new laptop and my resolution is to install no software on it that I'm not...
2008-10-16
675 reads
As I travel and visit DBAs from around the United States, I am always surprised at the job titles DBA...
2008-10-16
638 reads
I've always been very concerned about where I work. Well, maybe not always, since early in my career I took...
2008-10-15
631 reads
Every week, there are dozen of free educational events to attend throughout the United States. The sad part is that...
2008-10-15
625 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