Mega Code Archive

 
Categories / Oracle PLSQL Tutorial / Table
 

Create table with storage setting

SQL>  create table t ( x  int ) storage ( FREELISTS 2 ); Table created. SQL> SQL> alter table t storage ( FREELISTS 2 ); Table altered. SQL> SQL> drop table t; Table dropped.