Viewing 10 posts - 1 through 10 (of 10 total)
This article really hit home for me. My wife and I both work in IT and we are lucky enough to have stable, decent paying jobs here in Tampa. The problem...
November 30, 2006 at 7:58 am
As soon as I read this article I wanted to reply with the long list of criticisims as to why the generic lookup table approach is a really bad idea. ...
September 27, 2005 at 9:06 am
If your data access layer is built on the .NET technologies you can load the XML file into a strongly typed dataset, then load your other data in from your...
September 6, 2005 at 8:14 am
Whatever you do, do NOT put 5 disks in the system without RAID. Your chances of failure increase substantially. In the setup that you suggest, if one disk fails you...
August 24, 2005 at 8:36 am
I have run across a similar problem when asked to query our database of Seminar information for all clients that have had seminars in certain areas.
It was solved by purachasing...
June 14, 2005 at 9:17 am
I cant believe that you are comparing T-SQL to COBOL and attempting to draw a valid conclusion. The very fact that you would compare two such tools leads me to...
May 2, 2005 at 8:05 am
Very Easy:
create proc foo
set nocount on
insert into test (vchrdesc) values ('testing')
SET NOCOUNT OFF
RETURN @@IDENTITY
March 28, 2003 at 9:01 am
From what I can tell, this is a perfect use for a cursor. Considering that this process runs at night and you have a limited result set, you will...
March 6, 2003 at 11:07 am
While the content of the article was useful, I must offer some well intended criticisim. I am not sure if english is your second language, or if you intended...
January 14, 2003 at 6:55 am
Viewing 10 posts - 1 through 10 (of 10 total)