oracle導出空表

批量處理空表        首先使用下面的sql語句查詢一下當前用戶下的所有空表: select table_name from user_tables where NUM_ROWS=0; 然後用一下SQL語句執行查詢: select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0
相關文章
相關標籤/搜索