却表专题

Oracle 11g exp命令导出却表、少表的解决办法

ORACLE 11G中有个新特性,当表无数据时,不分配segment,以节省空间。 解决方法:   执行一下SQL语句查询 select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0 查询结果如下 alter table TABLE_1 allocate extent