Oracle數(shù)據(jù)導(dǎo)入導(dǎo)出基本操作示例
創(chuàng)新互聯(lián)建站,為您提供成都網(wǎng)站建設(shè)、成都網(wǎng)站制作、網(wǎng)站營銷推廣、網(wǎng)站開發(fā)設(shè)計,對服務(wù)成都咖啡廳設(shè)計等多個行業(yè)擁有豐富的網(wǎng)站建設(shè)及推廣經(jīng)驗。創(chuàng)新互聯(lián)建站網(wǎng)站建設(shè)公司成立于2013年,提供專業(yè)網(wǎng)站制作報價服務(wù),我們深知市場的競爭激烈,認(rèn)真對待每位客戶,為客戶提供賞心悅目的作品。 與客戶共同發(fā)展進(jìn)步,是我們永遠(yuǎn)的責(zé)任!
數(shù)據(jù)導(dǎo)出
a.將數(shù)據(jù)庫orcl完全導(dǎo)出,用戶名user 密碼password 導(dǎo)出到D:\dc.dmp中
exp user/password@orcl file=d:\dc.dmp full=y
full=y 表示全庫導(dǎo)出
b.將數(shù)據(jù)庫中user1和user2用戶導(dǎo)出
exp user/password@orcl file=d:\dc.dmp owner=(user1,user2)
full方式可以備份所有用戶的數(shù)據(jù)庫對象,包括表空間、用戶信息等,owner=XX只能備份指定用戶的對象.
c.將用戶user中表user_operator,user_id導(dǎo)出
exp user/password@orcl file=d:\dc.dmp tables=(user_operator,user_id)
tables=xx 表示備份相關(guān)表
d.按條件導(dǎo)出數(shù)據(jù)
exp user/password@orcl file=d:\dc.dmp tables=(user_id) query=’where dept_id=1’
e.只導(dǎo)出表,不導(dǎo)出數(shù)據(jù)
exp user/password@orcl file=d:\dc.dmp tables=(user_id) rows=N
2.數(shù)據(jù)導(dǎo)入
a.將D:\dc.dmp中導(dǎo)入到數(shù)據(jù)庫中
imp user/password@orcl file=d:\dc.dmp ignore=y
ignore=y 表示忽略錯誤 因為有的表已經(jīng)存在,然后它就報錯,對該表就不進(jìn)行導(dǎo)入。
b.將d:\daochu.dmp中的表user_id導(dǎo)入
imp user/password@orcl file=d:\dc.dmp tables=(user_id)