Create table and allocate space using storage parameters
CREATE TABLE divisions
(div_no NUMBER(2),
div_name VARCHAR2(14),
location VARCHAR2(13) )
STORAGE ( INITIAL 8M MAXSIZE 1G )
Table created.
Query the USER_TABLES for storage parameters
SELECT INITIAL_EXTENT FROM USER_TABLES WHERE TABLE_NAME='DIVISIONS'