Giving PASS Chapters Access to Summit Content
I've got a request in to PASS asking them to release 2 of the many sessions that were presented at...
2007-11-19
1,334 reads
I've got a request in to PASS asking them to release 2 of the many sessions that were presented at...
2007-11-19
1,334 reads
Real life events continue to interfere with my regular posting. However, I would rather deal with them and neglect posting...
2007-11-19
1,569 reads
You may not think of DDJ for database info and I'll admit that what they do cover is often a...
2007-11-15
1,426 reads
Visit the blog of Joe Healy, my favorite MS Developer Evangelist to see some pics from SQLSaturday. Joe is amazingly...
2007-11-15
1,350 reads
I was doing a research on SQL trace regarding RPC:Completed event. So I need to generate a RPC:Completed event first...
2007-11-14
1,734 reads
A short article but interesting I think, with some good comments already. I think in general triggers are under used,...
2007-11-13
583 reads
We were lucky enough to have Joe come to Orlando to speak at SQLSaturday and we also talked him into...
2007-11-12
806 reads
One of the things I discuss in my Successful Technical Speaking class (it's a
free class, usually once a quarter)...
2007-11-12
611 reads
I'm just finishing up sending out thank you emails to the volunteers, speakers, and sponsors that helped make our first...
2007-11-12
611 reads
I'll post Part III of Becoming a DBA tomorrow (meaning there will be two posts). Veterans' Day is typically celebrated...
2007-11-12
618 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