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...
gizmo
Nov 2, 2006
PCTINCREASE determines how fast the size of the next extent to be added gets increased. So in your example, the initial extent would be 10M, the second would be 10M, the third would be 30M, the fo...
Ahhh so confusing. Thanks a lot.