NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
re-Normalize (Score:1)
task_start, task_finish, task_canceljunction tables. You've just traded trying to enforceUserID NOT NULL IF Status NOT NULLfor enforcing that a task appears at most once in the UNION of the three task_{start,finish,cancel} tables, which will be even more awkward to code in your data dictionary (1=COUNT(*) FROM UNION...)You need just one task_status table that has
NOT NULLFKs to TaskID and UserID, plus a State enumerated type and an autoinsert date timestaBill
# I had a sig when sigs were cool
use Sig;
Re:re-Normalize (Score:2)
Ah, thanks. You're correct that my normalization wasn't correct. I can now see the value of what you propose and that does make the task simpler and more maintainable. As a caveat, though, some of what you suggest implies using a real database, not a toy like MySQL (which is what we're using).
This gives me another good rule of thumb to keep in mind. Naturally, when I see things like field_1, field_2, field_3 and so on, it's obvious that I need another table as what I'm looking at is essentially an arr
Re:re-Normalize (Score:1)
You have to use a real programming language too, not a toy like Perl.
(Oh, I meant Perl version 2. What? There's a newer version? I bet it's a toy just like Perl 2.)
Re:re-Normalize / Toys (Score:1)
Can you upgrade your MySQL to the latest & greatest? Yes, MySQL3 with default engine MyISAM is a toy. MySQL5.[01] with InnoDB engine (or BDB, or the coming Falcon engine) is no longer a toy -- subquery, views, transactions. (They've even got a cluster engine for partitioning.) [ Engines [mysql.com]] (I think this is the point of the Perl 2 joke.)
Barbie is correct that normalizing is hard
Bill
# I had a sig when sigs were cool
use Sig;
Re:re-Normalize / Toys (Score:1)
Bill nails it. I stopped having any sympathy for people who refuse to upgrade to new versions of free software at approximately 7 am on Sunday morning.
What happened at 7am Sunday? (Score:1)
What happened Sunday? I don't see a journal entry for Sunday. Is there a new entry for stupid customer tricks?
Memo to self: update home servers to Ubuntu to 6.06LTS and Debian to 3.1 now that they're really stable ...
Bill
# I had a sig when sigs were cool
use Sig;
Re:What happened at 7am Sunday? (Score:1)
I read yet another Nicholas Clark "This isn't fun anymore, and no one seems to want to pay someone to fix Perl 5" message on p5p. That's when I decided that companies which rely on Perl 5 but don't send bug reports or test snapshots and have all of their code in the Darkpan can fix their own bugs, or at least pay for the continued development of Perl. That is, they can do that if they care about their code.
Paying for Support for Perl5 (Score:1)
That hits home.
Support: I tried to get commercial support for Perl, and couldn't. Yes, I could pay for it, but I couldn't get anything I could recognize as support. I talked to ActiveState at LinuxWorld 2005, interested in buying support fo
Bill
# I had a sig when sigs were cool
use Sig;
Re:re-Normalize (Score:2)
NULLs (Score:2)
While current relational theory is pretty contentious when it comes to
NULL, the fact is that most databases that I'm aware of, including PostgreSQL, MySQL, and SQLite, allow foreign key columns to beNULL.—Theory
Re:NULLs (Score:2)
I was doing this in MySQL and having NULL values in the FK column caused MySQL to die a horrible death. And then just to prove my point, I created a small test case in MySQL and it didn't die. There must have been something else going on, but now I can't reproduce it. Damn.
Re:NULLs (Score:1)
I was thinking the same as n1vux all along while reading the post – there just isn’t any need for so many separate join tables, one is perfectly sufficient given a start/cancel/finish enum column. And I’d still do it with such a join table even if NULL FKs work: for one thing, such an enum column for would be naturally extendable without having to touch the schema. For another, you don’t ever need to
UPDATEany rows – apart from better scalability, having immutable rows tends t