在導出資料庫dmp文件時,有資料庫表空記錄的情況下,該空表不會被導出表結構,應用如下格式代碼: select 'alter table ' || table_name || ' allocate extent(size 64k);' sql_text, table_name, tablespace_ ...
在導出資料庫dmp文件時,有資料庫表空記錄的情況下,該空表不會被導出表結構,應用如下格式代碼:
select 'alter table ' || table_name || ' allocate extent(size 64k);' sql_text,
table_name,
tablespace_name
from user_tables
where 1=1
and table_name like '%'
and table_name not in
(select segment_name from user_segments where segment_type = 'TABLE');
View Code