The Perils of Java Schools
This is great, another rant from Joel, this time on the state of CS Degrees.
I didn't grow up in the...
2005-12-30
1,601 reads
This is great, another rant from Joel, this time on the state of CS Degrees.
I didn't grow up in the...
2005-12-30
1,601 reads
If you haven't heard by now, there is an unpatched exploit in how
Windows handles WMF files. Since this handling is...
2005-12-28
1,434 reads
I've had a new web server for a couple months and I've been slowly testing things as I can in...
2005-12-28
1,368 reads
My son ran across this comic and was sure I would enjoy it: http://www.qwantz.com/index.pl?comic=153
2005-12-23
1,566 reads
Be sure to read my article on SQLServerCentral on building aggregate queries: http://www.sqlservercentral.com/columnists/kKellenberger/aggregatequeries.asp
2005-12-21
1,577 reads
I found out today that I will get to attend the SQL Server Magazine Connections conference (part of the DevConnections...
2005-12-21
1,405 reads
Saw this at the book store this evening and picked it up.
SQL Server 2005 Administrator's Pocket Consultant
I'll spend the...
2005-12-18
1,494 reads
SQL Server Magazine has just published its annual salary survey. I don’t really recall how they did it in past...
2005-12-17
1,540 reads
This is one of those "bang head here" issues. I was trying to install
Net::SSH::Perl, which basically drives SSH through Perl,...
2005-12-16
1,794 reads
At least for me 🙂
My wife and I put an offer in on a house this past Monday and spent...
2005-12-16
1,379 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