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

Home -> Community -> Usenet -> c.d.o.misc -> Re: standard and easy way to do schema design

Re: standard and easy way to do schema design

From: David Cressey <cressey73_at_verizon.net>
Date: Wed, 15 Aug 2007 15:29:08 GMT
Message-ID: <8ZEwi.369$If.203@trndny03>

"Captain Paralytic" <paul_lautman_at_yahoo.com> wrote in message news:1187191510.809376.63070_at_b79g2000hse.googlegroups.com...
> On 15 Aug, 16:12, Doug_McMa..._at_yahoo.com wrote:
> > On Aug 15, 4:08 am, Summercooln..._at_gmail.com wrote:
> >
> > > I wonder instead of just brainstorming, there probably is
> > > a very standard and a simple way to do database schema design.
> >
> > > let's say we are doing a website. the user can go over
> > > and type in the movie name and zipcode, and the website
> > > will return all the theaters showing that movie and at what
> > > time, for theaters in THAT zipcode only (for simplicity).
> >
> > > so how do we just start and use a standard method that
> > > can be simple and very accurate to ensure good tables design?
> >
> > You could start with atomic pieces of information and then look for
> > relationships between them. For example, list Movies, Theaters, and
> > ZipCodes on the board. Then it should be clear that there is a many-
> > to-many relationship between Movies and Theaters, so you can add a
> > relation for that. Then it should also be clear that there is a many-
> > to-one relationship between ZipCodes and Theaters, so you can create a
> > foreign key from Theaters to ZipCodes. It's not a substitute for real
> > design work, but it might be enough for the 2-minute interview quiz.
>
> Wouldn't it be one-to-many between ZipCodes and Theatres or do you
> really have theatres that big?
>

I know of a theater in northern Vermont/southern Quebec that straddles the international border.

An unusual case, though. Not worth altering the model. Received on Wed Aug 15 2007 - 10:29:08 CDT

Original text of this message

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