Apologies and Testing
First, apologies to the Database Daily readers. I'll include one in
next week's issue as well, but the links didn't work...
2005-11-15
1,851 reads
First, apologies to the Database Daily readers. I'll include one in
next week's issue as well, but the links didn't work...
2005-11-15
1,851 reads
SQL 2005 provides a the new max specifier to be used with varbinary, varchar and nvarchar data types. You can...
2005-11-12
1,286 reads
If you haven't seen it, I started a poll in the editorial today. Check it out and give you answer:...
2005-11-11
1,541 reads
Today's the day!!!
SQL Server is being released as I type this and I'm online listening to the keynote from Steve...
2005-11-07
1,461 reads
In general I have been a Sony fan for most of my life, starting with the Walkmans they brought out...
2005-11-04
1,374 reads
If anyone is interested, we are looking for people that are interested
in doing some technical editing for our magazine, the...
2005-11-02
1,403 reads
I wrote the editorial today about this, but SQL Server 2005 RTM'd yesterday!!!
If you an on MSDN Subscriber, you can...
2005-10-28
1,389 reads
Living in the D.C metro area it is difficult to avoid politics,
policies and policy-makers. After 9/11 it became well nigh
impossible ...
2005-10-28
1,383 reads
My editorial
this past week had to do with a great uproar on the interviewing piece
that ran Monday. I felt I...
2005-10-20
1,443 reads
It was busy at work after returning from PASS which means my work day continued for 2 or 3 hours after I got...
2005-10-16
1,286 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