Mega Code Archive

 
Categories / Oracle PLSQL / Table
 

Alter table to change the storage

SQL> 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. SQL> SQL> --