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

Home -> Community -> Usenet -> c.d.o.server -> Re: How to store a directory info into a database?

Re: How to store a directory info into a database?

From: Louis Chen <llchen_at_nortelnetworks.com>
Date: Mon, 27 May 2002 09:39:20 -0400
Message-ID: <3CF23708.92D4E79A@nortelnetworks.com>


Thanks for your kind suggestions. But my immediate thought was that it would be very difficult the program interfacing to the database as the schema is not fixed, it changs dynamically.

Louis

Eric Dickner wrote:
> How about this.
>
> table level_0 {
> dir_id int, KEY
> dir_name varchar,
> parent_id int = null,
> child_id enumeration of int,
> }
>
> table level_1 {
> dir_id int, KEY
> dir_name varchar,
> parent_id int = null,
> child_id enumeration of int,
> }
> .
> .
> .
> table level_N {
> dir_id int, KEY
> dir_name varchar,
> parent_id int = null,
> child_id enumeration ot int,
> }
>
> I have to think this is the best you can do both search wise and sroarage
> wise.
>
> ejd
Received on Mon May 27 2002 - 08:39:20 CDT

Original text of this message

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