1.首先在 客戶端 建立 伺服器端的對應的服務名
test_orcl =
(description =
(address_list =
(address = (protocol = tcp)(host = 192.168.1.110)(port = 1521))
)
(connect_data =
(service_name = orcl)
)
)//方法二.在oracle客戶端,開啟net manager。建立乙個服務命名test_orcl,主機ip為:192.168.1.110,服務名orcl,埠1521
2.測試遠端伺服器是否通暢
進入到cmd後,執行命令:tnsping test_orcl。//來判斷是否通暢
3.案例:匯出某使用者方案
//方法一:
exp luob/tiger@test_orcl file=d:\back.dmp //(省略的owner)
//方法二:
exp luob/tiger@test_orcl owner=scott file=d:\back1.dmp
4.案例:將遠端伺服器上的luob使用者方案匯入到本地的 zhangs下面
imp zhangs/tiger@orcl file=d:\back.dmp fromuser=luob touser=zhangs
5.增量匯出/匯入 inctype( complete ,incremental ,cumulative)
//1.概述:增量匯出是一種常用的資料備份方法,它只能對整個資料庫來實施,並且必須作為system來匯出。在進行此種匯出時,系統不要求回答任何問題。匯出檔名 預設為export.dmp,如果不希望自己的輸出檔案定名為export.dmp,必須在命令列中指出要用的檔名。
//2 「完全」增量匯出(complete)即備份整個資料庫,比如:
exp system/manager inctype=complete file=990702.dmp
exp system/manager inctype=incremental file=990702.dmp
//4. 「累計型」增量匯出(cumulative) 累計型匯出方式只是匯出自上次「完全」 匯出之後資料庫中變化了的資訊。比如:[size=medium][/size]
exp system/manager inctype=cumulative file=990702.dmp
6.案例:作為乙個資料管理員可以排定乙個備份日程表,用資料匯出的三個不同方式合理高效地完成。比如資料庫的備份任務可作如下安排:
星期一:完全匯出(a)
星期二:增量匯出(b)
星期三:增量匯出(c)
星期四:增量匯出(d)
星期五:累計匯出(e)
星期六:增量匯出(f)
星期日:增量匯出(g)
//如果在星期日,資料庫遭到意外破壞,資料庫管理員可按以下步驟來恢復資料庫:
第一步:用命令create database重新生成資料庫結構;
第二步:建立乙個回滾段(足夠大)。create public rollback segment your_rb_name tablespace rbs storage(initial 3m next 3m minextents 10 optimal 500m);
第三步:完全增量匯入a:
imp system./manager inctype=rectore full=y file=a
第四步:累計增量匯入e:
imp system/manager inctype=rectore full=y file=e
第五步:最近增量匯入f:
imp system/manager inctype=rectore full=y file=f
7.說明 其他的 物件的匯入匯出
oracle 遠端匯入 匯出
exp命令 1 exp username psw test file d test.dmp full y 2 exp username psw test file d test.dmp owner ly 3 exp username psw test file d test.dmp tables g...
oracle遠端匯出 匯入
建立db link,遠端匯出 匯入。expdp impdp oracle資料庫本地磁碟空間有限,或應用系統的需要,會通過遠端的方式匯出資料庫。在oracle當中,exp遠端導庫的速度太慢,而expdp又無法直接通過遠端導庫。因此需要建立db link遠端連線後,才能使用expdp遠端導庫。詳細步驟如...
oracle 資料備份匯入imp匯出exp
資料的匯出 1 將資料庫test完全匯出,使用者名稱system 密碼manager 匯出到d daochu.dmp中 exp system manager test file d daochu.dmp full y 2.將資料庫中system使用者與sys使用者的表匯出 exp system ma...