Viewing 10 posts - 151 through 160 (of 160 total)
I could not have said it better myself.
November 1, 2007 at 5:39 am
I wear two hats in my company. I am the lead programmer and the DBA. There is a big debate on this issue in forums like ASP.NET. As...
October 30, 2007 at 8:58 pm
Your design is different then I expected (I'd say better). In my design I had two tables that had the following fields:
StatusMain - StatusMainID (Identity), TypeCode, Description
StatusSub...
October 12, 2007 at 7:27 am
Thanks. I am not using inheritance for my lookup tables. I use a static class that has 2 methods.
GetByPrimaryKey(string lookupType, objectKey)
GetAll(string lookupType)
The first method returns what I...
October 11, 2007 at 11:09 am
Thanks for the advice. I was not 100% sure that I had a handle on this. Unfortunately in my company, I am the System architect, Lead Programmer and DBA....
October 11, 2007 at 11:00 am
You may not be an OO or .NET expert but you hit on my design very quickly. While I use many status tables in the database, I only use...
October 11, 2007 at 9:41 am
Thanks for the help on this topic (I would have responded earlier, but I am on jury duty so I am in and out of the office). I was...
October 11, 2007 at 8:28 am
Option 2 sounds workable.
I had originally created the following tables:
CustomerStatus
VendorStatus
OrderStatus
Each table only held the rows that were applicable to that table. My boss thought that it was...
October 8, 2007 at 1:57 pm
Based on your response I have a feeling that my example may have been a little confusing. Here is that same example that have hopefully made a little clearer.
I...
October 8, 2007 at 1:30 pm
Viewing 10 posts - 151 through 160 (of 160 total)