IMP中commit=y的用法~~~
imp user1/user1 tables=t1 file=exp_1.dmp,exp_2.dmp,exp_3.dmp,exp_4.dmp,exp_5.dmp,exp_6.dmp,exp_7.dmp log=imp_t1.log ignore=y
. . importing table "T1"
IMP-00058: ORACLE error 30036 encountered
ORA-30036: unable to extend segment by 8 in undo tablespace 'UNDOTBS1'
IMP-00028: partial import of previous table rolled back: 14351923 rows rolled back
IMP-00017: following statement failed with ORACLE error 2264:
About to enable constraints...
Import terminated successfully with warnings.
檢視undo表空間已經使用了32G,由於8k資料塊下一個dbf最大是32G,所以imp匯入時就報錯了,一查這個表,發現0條資料,原因是當imp時如果不加commit=y的話,那麼所有的資料都是要最後一起提交的,那麼就個就需要佔用相當大的undo表空間了,所以當我們加了commit=y之後,錯誤就沒在發生。但是由於頻繁的commit,所以匯入的效能是會受到影響的。
imp user1/user1 tables=t1 file=exp_1.dmp,exp_2.dmp,exp_3.dmp,exp_4.dmp,exp_5.dmp,exp_6.dmp,exp_7.dmp log=imp_t1.log ignore=y commit=y
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24500180/viewspace-713789/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 理解exp, imp 使用direct=y 及imp commit=yMIT
- 小議IMP操作引數COMMIT=Y(三)MIT
- 小議IMP操作引數COMMIT=Y(二)MIT
- 小議IMP操作引數COMMIT=Y(一)MIT
- (轉載)小議IMP操作引數COMMIT=YMIT
- imp commit引數的使用MIT
- imp的buffer和commit分析MIT
- imp commit,buffer 引數MIT
- oracle exp imp 用法Oracle
- imp使用注意點(commit選項)MIT
- 轉摘:ORACLE:IMP工具ignore=y的一個問題Oracle
- 如何獲取objects的定義 - imp show=y 以及 impdp sqlfile=meta_sql.sqlObjectSQL
- imp匯入時default 按table提交,使用commit按buffer提交MIT
- Python中x=y與x==y的區別。(比較簡單)Python
- imp中的indexfile引數解決imp指定表空間問題Index
- ROUND(x,y)與TRUNC(x,y)函式中y引數值為省略、空值與null的區別函式Null
- clientX/Y pageX/Y offsetX/Y layerX/Y screenX/Y clientHeight innerWidth...client
- git 中撤銷已commit 的GitMIT
- oracle中imp命令詳解Oracle
- shell date 詳細用法 如date --date='1 month ago' '+%Y%m'Go
- python中的一個現象,db.commit和db.commit()PythonMIT
- js中的this用法JS
- SQL 中With as 的用法SQL
- Oracle中with的用法Oracle
- 觸發器中不能commit觸發器MIT
- SharedPreferences中的commit和apply方法MITAPP
- MYSQL中replace into的用法MySql
- Java中super的用法Java
- mySQL中replace的用法MySql
- iOS 中 cell的用法iOS
- golang中channel的用法Golang
- 【 Oracle中rownum的用法 】Oracle
- Java中DecimalFormat的用法JavaDecimalORM
- MySQL中limit的用法MySqlMIT
- js中的||與&&用法JS
- c++中::的用法C++
- mysql中count的用法MySql
- java中filter的用法JavaFilter