Viewing 15 posts - 316 through 330 (of 824 total)
Well now you've gone and started another holy war! While I agree with Date's findings for the most part, I'm not quite prepared to accept his complete prohibition on NULLs,...
September 29, 2005 at 5:12 pm
Don't do it! This is a train wreck waiting to happen. This is essentially the same thing that I refered to as a MUCK table in this article:
http://www.sqlservercentral.com/columnists/dpeterson/lookuptablemadness.asp
Also see...
September 29, 2005 at 10:29 am
Ahh, I wondered if that was you. It must be rough out there in paradise!
September 29, 2005 at 8:12 am
While the MUCK table might be properly normalized when viewed in isolation, the database that utilizes a MUCK cannot possibly be properly normalized.
Good articles on database design are always needed. ...
September 28, 2005 at 9:54 pm
Actually, I made a typo. I should have said 3NF since 1NF says nothing about key dependence... Sorry for any confusion.
So while Troy's point about 1NF is valid (assuming...
September 28, 2005 at 7:46 pm
To add to what Joe said:
Use of MUCK tables violates either the Information Principle or 1NF--or both. It is common to see a MUCK table defined with like so
CREATE TABLE...
September 28, 2005 at 4:26 pm
I think you are minimizing the risks of a MUCK table and maximizing the percieved benefits...
The risk of drift is real, but using MUCKs does nothing to address it. Using...
September 28, 2005 at 1:41 pm
STOP, LOOK, and LISTEN. This is a terrible way to design a database. Follow the link above and look at my article here:
http://www.sqlservercentral.com/columnists/dpeterson/lookuptablemadness.asp
and look at the responses to this...
September 28, 2005 at 1:22 pm
It isn't possible to use these abominations properly.
September 28, 2005 at 1:19 pm
I don't see how defining views can possibly help this situation. Views can't be referenced by FK constraints. Using such a method throws you immediately back to triggers or UDF's...
September 28, 2005 at 11:06 am
Not unless you are willing to allow them to alter the table (by adding a FK constraint). This can get pretty messy when it comes time to roll out upgrades...
September 28, 2005 at 9:39 am
Customer configurable attributes can be a huge problem. The fact that commercial software so often can't properly define the requirements for all of their potential customers is one of the...
September 28, 2005 at 9:19 am
So, you lost the log file(s) but the data files were fine? Then you restored the log file and attempted to attach the database?
If by restored, you mean that you...
September 27, 2005 at 12:12 pm
Ahh, I didn't specifically address the old UDF enforced integrity in my article, but the same argument that I used against triggers applies here. Using the MUCK approach, your referencing...
September 27, 2005 at 12:00 pm
Yes and no... This is generally the right idea, but it won't do much good if your various meta-luns are all ultimately created from the same raid arrays (which is...
September 24, 2005 at 10:09 am
Viewing 15 posts - 316 through 330 (of 824 total)