Mega Code Archive

 
Categories / Oracle PLSQL Tutorial / Table
 

Create table with storage setting 2

SQL>   create table my_hash_table (   2      name       varchar2(30),   3      value   varchar2(4000) )   4    tablespace users   5    storage (   6      initial     1M   7      next        512K   8      pctincrease 0   9      minextents  2  10      maxextents  unlimited )  11    / Table created. SQL> drop table my_hash_table; Table dropped.