Oracle導出導出有兩中方式:一、利用exp imp導出導入;二、利用Oracel數(shù)據(jù)泵expdp impdp導出導入。
成都創(chuàng)新互聯(lián)公司長期為上千客戶提供的網(wǎng)站建設服務,團隊從業(yè)經(jīng)驗10年,關注不同地域、不同群體,并針對不同對象提供差異化的產(chǎn)品和服務;打造開放共贏平臺,與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為廈門企業(yè)提供專業(yè)的成都做網(wǎng)站、網(wǎng)站設計,廈門網(wǎng)站改版等技術服務。擁有十年豐富建站經(jīng)驗和眾多成功案例,為您定制開發(fā)。
一、利用exp imp導出導入
exp imp 語法如下:
exp:
1) 將數(shù)據(jù)庫orcl完全導出
exp system/manager@orcl file=d:\orcl_bak.dmp full=y
2) 將數(shù)據(jù)庫中system用戶的表導出
exp system/manager@orcl file=d:\system_bak.dmp owner=system
3) 將數(shù)據(jù)庫中表table1,table2導出
exp system/manager@orcl file=d:\table_bak.dmp tables=(table1,table2)
4) 將數(shù)據(jù)庫中的表customer中的字段mobile以"139"開頭的數(shù)據(jù)導出
exp system/manager@orcl file=d:\mobile_bak.dmp tables=customer query=\"where mobile like '139%' \"
imp:
1) 將備份文件bak.dmp導出數(shù)據(jù)庫
imp system/manager@orcl file=d:\bak.dmp
如果數(shù)據(jù)表中表已經(jīng)存在,會提示錯誤,在后面加上ignore=y就可以了。
2) 將備份文件bak.dmp中的表table1導入
imp system/manager@orcl file=d:\bak.dmp tables=(table1)
exp imp導出導入數(shù)據(jù)方式的好處是只要你本地安裝了Oracle客戶端,你就可以將服務器中的數(shù)據(jù)導出到你本地計算機。同樣也可以將dmp文件從你本地導入到服務器數(shù)據(jù)庫中。但是這種方式在Oracle11g版本中會出現(xiàn)一個問題:不能導出空表。Oracle11g新增了一個參數(shù)deferred_segment_creation,含義是段延遲創(chuàng)建,默認是true。當你新建了一張表,并且沒用向其中插入數(shù)據(jù)時,這個表不會立即分配segment。
解決辦法:
1、設置deferred_segment_creation參數(shù)為false后,無論是空表,還是非空表,都分配segment。
在sqlplus中,執(zhí)行如下命令:
SQLalter system set deferred_segment_creation=false;
查看:
SQLshow parameter deferred_segment_creation;
該值設置后,只對后面新增的表起作用,對之前建立的空表不起作用,并且注意要重啟數(shù)據(jù)庫讓參數(shù)生效。
2、使用 ALLOCATE EXTEN
使用 ALLOCATE EXTEN可以為數(shù)據(jù)庫對象分配Extent,語法如下:
alter table table_name allocate extent
構建對空表分配空間的SQL命令:
SQLselect 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0
批量生成要修改的語句。
然后執(zhí)行這些修改語句,對所有空表分配空間。
此時用exp命令,可將包括空表在內(nèi)的所有表導出。
二、利用expdp impdp導出導入
在Oracle10g中exp imp被重新設計為Oracle Data Pump(保留了原有的 exp imp工具)
數(shù)據(jù)泵與傳統(tǒng)導出導入的區(qū)別;
1) exp和imp是客戶端工具,他們既可以在客戶端使用,也可以在服務端使用。
2) expdp和impdp是服務端工具,只能在Oracle服務端使用。
3) imp只適用于exp導出文件,impdp只適用于expdp導出文件。
expdp導出數(shù)據(jù):
1、為輸出路徑建立一個數(shù)據(jù)庫的directory對象。
create or replace directory dumpdir as 'd:\';
可以通過:select * from dba_directories;查看。
2、給將要進行數(shù)據(jù)導出的用戶授權訪問。
grant read,write on directory dumpdir to test_expdp;
3、將數(shù)據(jù)導出
expdp test_expdp/test_expdp directory=dumpdir dumpfile=test_expdp_bak.dmp logfile=test_expdp_bak.log schemas=test_expdp
注意:這句話在cmd窗口中運行,并且最后不要加分號,否則會提示錯誤。因為這句話是操作系統(tǒng)命令而不是SQL。
impdp導入數(shù)據(jù):
1、給將要進行數(shù)據(jù)導入的用戶授權訪問。
grant read,write on directory dumpdir to test_impdp;
2、將數(shù)據(jù)導入
impdp test_impdp/impdp directory=dumpdir dumpfile=test_expdp_bak.dmp remap_schema=test_expdp:test_impdp
數(shù)據(jù)導出具體如下:
將數(shù)據(jù)庫TEST完全導出,用戶名system 密碼manager 導出到D:\daochu.dmp中。
將數(shù)據(jù)庫中system用戶與sys用戶的表導出。
將數(shù)據(jù)庫中的表table1 、table2導出。
將數(shù)據(jù)庫中的表table1中的字段filed1以"00"打頭的數(shù)據(jù)導出。
將D:\daochu.dmp 中的數(shù)據(jù)導入 TEST數(shù)據(jù)庫中。
將d:\daochu.dmp中的表table1 導入。
一、使用PLSQL導出導入ORACLE數(shù)據(jù)庫:
1、打開plsql--工具----》導出用戶對象(可以導出表結構和序列、視圖)
ps:如果上面不選中"包括所有者",這樣到導出的表結構等就不包含所有者,
這樣就可以將A所有者的表結構等導入到B所有者的表空間中
2、導出表結構和表數(shù)據(jù):
1、想要導入數(shù)據(jù)庫必須首先創(chuàng)建用戶和表空間并賦權限
(1)創(chuàng)建用戶:
(2)創(chuàng)建表空間:電腦開始菜單-----》找到Oracle目錄----》找到數(shù)據(jù)要導入進的數(shù)據(jù)庫---》打開該數(shù)據(jù)庫的控制臺---》然后可以創(chuàng)建表空間
2、導入表結構、序列和數(shù)據(jù)
(1)導入表結構和序列: plsql---》工具---》導入表
(2)導入表數(shù)據(jù):
到此數(shù)據(jù)導入完成;
注:(1)創(chuàng)建的用戶和表空間是和導出數(shù)據(jù)庫中的用戶和表空間對應的;如要從A數(shù)據(jù)庫中導出B用戶C表空間下的所有表、數(shù)據(jù)、序列到M數(shù)據(jù)庫;則在M數(shù)據(jù)庫中創(chuàng)建B用戶
和C表 空間。
(2)oracle11數(shù)據(jù)庫不能導出orcale10的數(shù)據(jù)
(3)plsql導出表數(shù)據(jù)是如果數(shù)據(jù)中用Long類型的大數(shù)據(jù),導出格式不能是sql,只有dmp格式才可以。
1 將數(shù)據(jù)庫TEST完全導出,用戶名system 密碼manager 導出到D:\daochu.dmp中\(zhòng)x0d\x0a exp system/manager@TEST file=d:\daochu.dmp full=y\x0d\x0a2 將數(shù)據(jù)庫中system用戶與sys用戶的表導出\x0d\x0a exp system/manager@TEST file=d:\daochu.dmp owner=(system,sys)\x0d\x0a3 將數(shù)據(jù)庫中的表table1 、table2導出\x0d\x0a exp system/manager@TEST file=d:\daochu.dmp tables=(table1,table2) \x0d\x0a4 將數(shù)據(jù)庫中的表table1中的字段filed1以"00"打頭的數(shù)據(jù)導出\x0d\x0a exp system/manager@TEST file=d:\daochu.dmp tables=(table1) query=\" where filed1 like '00%'\"\x0d\x0a \x0d\x0a 上面是常用的導出,對于壓縮我不太在意,用winzip把dmp文件可以很好的壓縮。\x0d\x0a 不過在上面命令后面 加上 compress=y 就可以了
數(shù)據(jù)導出:
1將數(shù)據(jù)庫TEST完全導出,用戶名system密碼manager導出到D:\daochu.dmp中
expsystem/manager@TESTfile=d:\daochu.dmpfull=y
2將數(shù)據(jù)庫中system用戶與sys用戶的表導出
expsystem/manager@TESTfile=d:\daochu.dmpowner=(system,sys)
3將數(shù)據(jù)庫中的表table1、table2導出
expsystem/manager@TESTfile=d:\daochu.dmptables=(table1,table2)
4將數(shù)據(jù)庫中的表table1中的字段filed1以"00"打頭的數(shù)據(jù)導出
expsystem/manager@TESTfile=d:\daochu.dmptables=(table1)query=\"wherefiled1like?'00%'\"
1、首先通過tode創(chuàng)建或者克隆新的數(shù)據(jù)庫用戶,如下圖所示。
2、導出目標表準備好,空表無法導出表結構,然后打開運行命令,導出目標用戶test所有數(shù)據(jù)庫相關信息,如下圖所示。
3、輸入完成后,點擊鍵盤上的回車,等待一會如下圖所示。
4、最后導入目標用戶new所有數(shù)據(jù)庫相關信息,如下圖所示。
5、最后如下圖所示,就導出完成了。
本文名稱:oracle如何導出方案 Oracle 導出
鏈接地址:http://vcdvsql.cn/article38/hejisp.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供外貿(mào)建站、品牌網(wǎng)站設計、網(wǎng)站策劃、企業(yè)網(wǎng)站制作、網(wǎng)站改版、網(wǎng)頁設計公司
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)