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)
Reply to This
Parent