theremin
Nov 2, 2006
How to use storage... I'm using the following command: CREATE TABLE CH07NEW_ADDRESSES OF CUSTOMER_ADDRESS_TYPE because I'm creating an object table, but next I want the table to have 10MB...
theremin
Nov 2, 2006
Thanks. You know what you're talking about more than me, but it wouldn't read as: CREATE TABLE CH07NEW_ADDRESSES OF CUSTOMER_ADDRESS_TYPE TABLESPACE USER_DTAB STORAGE (INITIAL 10M NEXT 10M P...
For that you would want
STORAGE (INITIAL 10M NEXT 20M PCTINCREASE 100)
Ahhh so confusing. Thanks a lot.