Dear Monks,
Please excuse this off topic post but I find that perlmonks.com is the only place where I can get useful and timely feedback on software issues. I am questioning the wisdom of using a foreign key constraint to enforce check constraint like functionality.
I have several tables that I use to "decode" integer values to more readable strings.
Example:
I have one table called department which is defined like so.
ID NUMBER PRIMARY KEY
DEPT_CODE VARCHAR2(5)
...
And I add the foreign key with the alter table command.
ALTER TABLE DEPARTMENT ADD CONSTRAINT DEPT_NUM_CK_FK
FOREIGN KEY ( DEPT_CODE ) REFERENCES DEPARTMENT_CODES.CODE;
The DEPARTMENT_CODES table has values like this:
SEQ CODE NAME
--- ----- -----------------------------
1 H23R Human Resources
2 1126 R & D
...
This way when someone try's and enters a code that is not in DEPARTMENT_CODES table they will get a integrity constraint violate.
I was just wondering if any monks have used this type of approach and if using check constraints maybe better.
We have about 2000 values in the DEPARTMENT_CODE table.
Thanks for you time :)
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.