oracle11g 空表不能exp匯出的問題
先查詢一下哪些表是空的:
Sql程式碼
select table_name from user_tables where NUM_ROWS=0;
下面我們透過select 來生成修改語句:
Sql程式碼
select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0
然後就在結果視窗裡面生成了下面那些東西:
Sql程式碼
alter table E2USER_STATE allocate extent;
alter table ENTERPRISE_E2USER allocate extent;
alter table ENTERPRISE_INFO_TYPE allocate extent;
alter table ENTERPRISE_MAPMARK allocate extent;
alter table ENTERPRISE_NEEDTASK allocate extent;
alter table ENTERPRISE_PICTURE allocate extent;
alter table ENTERPRISE_REPORT allocate extent;
alter table ENTERPRISE_REPORT_TYPE allocate extent;
alter table ENTERPRISE_TEAM allocate extent;
alter table FROMUSER_ADJUNCT_TARGET allocate extent;
alter table FROMUSER_OFFER allocate extent;
alter table NEEDTASK_TYPE allocate extent;
alter table SYS_PRIVILEGE allocate extent;
alter table SYS_RELEVANCE_RESOURCE allocate extent;
alter table SYS_RELEVANCE_TARGET allocate extent;
alter table SYS_RESOURCE_TYPE allocate extent;
alter table TASK_FEEDBACK allocate extent;
alter table TASK_MYTASKTYPE allocate extent;
alter table TOUSER_MESSAGE allocate extent;
alter table ABOUTUSER_POINT allocate extent;
alter table ABOUTUSER_POINT_MARK allocate extent;
alter table ABOUTUSER_QUERYKEY allocate extent;
alter table ABOUTUSER_REPORT_HISTORY allocate extent;
alter table DICT_COMMENT_TYPE allocate extent;
alter table DICT_INDUSTRY_TYPE allocate extent;
alter table DICT_POST allocate extent;
alter table DICT_REGION allocate extent;
alter table ENTERPRISE_COMMENT allocate extent;
alter table ENTERPRISE_COMMENT_C allocate extent;
alter table ENTERPRISE_INFO allocate extent;
alter table ENTERPRISE_INFO_C allocate extent;
alter table ENTERPRISE_INFO_STATE allocate extent;
alter table CALENDAR_CREATETYPE allocate extent;
alter table CALENDAR_MY allocate extent;
alter table CALENDAR_TYPE allocate extent;
ok 執行上面那些sql,之後再exp吧,那就是見證奇蹟的深刻。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/309902/viewspace-1057060/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 解決Oracle 11g空表不能exp匯出的問題Oracle
- Oracle 11g的exp不能匯出空表Oracle
- Oracle11g使用exp匯出空表(轉載)Oracle
- Oracle11g用exp無法匯出空表的解決方法Oracle
- Oracle11g新特性導致空表不能匯出Oracle
- Oracle11g中用exp不能匯出空表,異構平臺遷移可以使用expdp、impdpOracle
- Oracle 11G用EXP時,空表不能匯出解決方法Oracle
- Oracle 11g 預設不給空表分配空間,exp匯出備份不匯出空表!Oracle
- oracle 11g 不能匯出空表Oracle
- Oracle - 匯入異常ORA-01659和11G在Exp時空表不能匯出Oracle
- imp/EXP 表空間轉換問題
- oracle之EXP匯出表空間錯誤解決Oracle
- exp匯出報錯EXP-00106問題處理
- 【EXP】使用EXP的QUERY選項匯出表中部分資料
- exp匯出檔案時 字符集設定問題
- 關於使用exp按照條件匯出資料的問題(摘)
- oracle 9.2.0.4升級到9.2.0.8時exp匯出時遇到的問題Oracle
- EXP匯出資料檔名稱重複問題的解決
- expdp/impdp來解決exp/imp出現的錯誤並匯入指定表空間
- 解決0racle11G 匯出表的問題 EXP-00011: 不存在 .
- exp/imp匯出匯入工具的使用
- 【實驗】【PARTITION】exp匯出分割槽表資料
- 【EXP/IMP】使用EXP /IMP工具“模糊”匯出和匯入
- Oracle 11g匯出空表Oracle
- Oracle exp/imp匯出匯入工具的使用Oracle
- oracle資料的匯入匯出imp/expOracle
- 資料匯入匯出EXP/IMP
- exp/imp匯出匯入資料
- Oracle匯入(imp )與匯出(exp )Oracle
- 【ORACLE 匯入匯出】exp 錯誤Oracle
- ORACLE匯入匯出命令exp/impOracle
- 將oracle11g的表匯出並匯入到10g中Oracle
- Oracle11g新特性影響EXP匯出,ORA-01455的處理Oracle
- 低版本exp連線到高版本庫進行匯出,匯出資料為空
- 如何用exp 匯出 某個表的某幾列資料
- Oracle匯出空表(從來都沒有用過的表)Oracle
- oracle資料匯出匯入(exp/imp)Oracle
- Oracle 遠端匯出匯入 imp/expOracle