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: Physical data modeling books

Re: Physical data modeling books

From: Van Messner <vmessner_at_bestweb.net>
Date: Sat, 19 May 2001 04:09:19 GMT
Message-ID: <PlmN6.2139$gA.733934@monger.newsread.com>

I do a lot of physical design work, but I'm an Oracle DBA. There really isn't much written about this. You need to learn what options are available to you in Oracle, what the tradeoffs are, and what makes sense in a given set of circumstances. Here is a simple physical table creation script using locally managed tablespaces for tables and global temporary tables for session information.

--

PROMPT Creating Index ADDRESS_MSTR_FK2_I on Table ADDRESSES_MSTR CREATE INDEX ADDRESS_MSTR_FK2_I ON ADDRESSES_MSTR   (LOCATION_KEY)
  COMPRESS 1
  TABLESPACE COMMON_MEDIUM
    STORAGE(INITIAL 256K NEXT 256K PCTINCREASE 0 MINEXTENTS 1 MAXEXTENTS 249)
  PCTFREE 40
;
PROMPT Adding FOREIGN Constraint To ADDRESSES_MSTR Table ALTER TABLE ADDRESSES_MSTR ADD (
  CONSTRAINT ADDRESS_MSTR_FK2
  FOREIGN KEY (LOCATION_KEY)
  REFERENCES LOCATIONS_MSTR (LOCATION_KEY) );

"Patrick Demets" <demets_at_home.com> wrote in message news:5N1M6.38880$Hk4.599397_at_news1.rdc1.ab.home.com... > Would anyone be able to suggest good (fairly recent) books on physical  data
> modeling, especially those that follow Oracle Designer (6i, 6, or earlier)
> theory and conventions?  There are many books available on logical data
> modeling (most notably by Barker and by Silverston, amongst others), but
> very few on PDM.  Or would this fall under "database design"?; to me,
> there's a difference between that and "physical data modeling".  Any help
> would be appreciated.
>
> Cheers,
>
> Patrick Demets
>
>
>
Received on Fri May 18 2001 - 23:09:19 CDT

Original text of this message

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