Howdy!

When you say that your design is "correct", what do you mean?

A design might be "correct" but violate first normal form. Conversely, it might be fully normalized but still fail to model the data accurately.

The "right" approach to your first issue depends on several things. Are there attributes that are rarely used? They might be candidates for placing in one or more side tables. How many attributes do you have?

Will the data be updated frequently ("transaction processing") or will it be mostly queried ("data warehouse") or will the usage be somewhere in the middle?

I would first model the data using only as many entities as necessary. Once you have a clean and clear model that describes the entities and their relationships, you can consider implementation details. Don't get too wrapped up in "optimization", as you may well not know clearly which characteristics you need to optimize for. There is not necessarily a single "correct" solution.

yours,
Michael Database designer and modeler

In reply to Re: (OT) Couple of Data Model Design Considerations by herveus
in thread (OT) Couple of Data Model Design Considerations by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.