Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> comp.databases.theory -> Re: What is a "code table"?

Re: What is a "code table"?

From: Gene Wirchenko <genew_at_mail.ocis.net>
Date: Sat, 14 Jun 2003 02:23:55 GMT
Message-ID: <3eea5b2d.22528854@news.ocis.net>


"Bob" <roberth_at_nospam.com> wrote:

>I've seen this term used many times, but never defined. Any searches for a
>definition only finds use of the term in passing.
>
>Do "code tables" contain actual uncompiled programming code , or other SQL?
>Is this good design? How do you change control if the guts of an
>application can be so easily changed? Any examples?

     a.k.a. "lookup table", as in:
          create table colours (colcode n(3), coldesc c(20));
          insert into colours (colcode,coldesc) values (1,"Black");
          insert into colours (colcode,coldesc) values (2,"Brown");
          insert into colours (colcode,coldesc) values (3,"Red");

Sincerely,

Gene Wirchenko

Computerese Irregular Verb Conjugation:

     I have preferences.
     You have biases.
     He/She has prejudices.
Received on Fri Jun 13 2003 - 21:23:55 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US