Hello all,

What I'm looking for out of my posting is an Oracle URL that will explain in detail what I am unsure on.

What I am unclear on is when I'm creating a new set of tables (defined from an ERD) under a single schema, how should I decide when creating these individual tables what their specific values like the ones I included below should be, what should be considered when determining these values and what should be used to figure them out:

create table CUSTOMER
( .....
STORAGE (INITIAL 200K NEXT 200K),
) pctfree 20 pctused 60
storage
( initial 200k
next 200k
maxextents unlimited
pctincrease 0
);