oracle資料庫的邏輯備份與恢復(二)
匯出方案:
a)匯出自己的方案:
如:exp scott/tiger@orcl owner=scott file d:\scott.dmp
b)匯出其他方案(級別一定要大於等於匯出那個表的級別)
如:exp system/manager@orcl owner=(system,scott) file=d:\system.dmp
這樣就匯出了system方案 scott方案
c)匯出資料庫(要求該使用者具有dba的許可權或者exp_full_database的許可權)
如:exp userid=system/manager@orcl full=y inctype=complete file=d:\***.dmp
匯入表:
a)匯入自己表:
如:imp userid=scott/tiger@orcl tables=(emp) file=d:\xx.dmp
b)匯入表的結構:
要求該使用者具有dba的許可權,或是imp_full_database
如:imp userid=system/manager@orcl tables=(emp) file=d:\xx.dmp touser=scott
c)匯入表的結構:
imp userid=scott/tiger@orcl tables=(emp) file=d:\xx.dmp rows=n
d)匯入資料:
如果物件已經存在可以只匯入表的資料
如:imp userid=scott/tiger@orcl tables(emp) file d:\\xx.dmp ignore=y
匯入方案:
a)匯入自身的方案
如:imp userid=scott/tiger file=d:\***.dmp
b)匯入其它方案
如:要求該使用者具有dba的許可權
imp userid=system/manager file=d:\***.dmp fromuser=system touser=scott
c)匯出資料庫
imp userid=system/manager full=y file=d:\***.dmp(不需要寫資料庫例項,
會自動建立資料庫例項)
Oracle資料庫邏輯備份與恢復
一.oracle邏輯備份介紹 oracle邏輯備份的核心就是複製資料 oracle提供的邏輯備份與恢復的命令有exp imp,expdp impdp。當然像表級複製 create table table back as select from table 也算是一種邏輯備份。oracle邏輯備份沒有...
Oracle 資料庫(表)的邏輯備份與恢復
匯入最好用 匯入 匯出最好用 匯出 邏輯備份是指使用工具 export將資料物件的結構和資料匯出到檔案的過程,邏輯恢復是指當資料庫物件被誤操作而損壞後使用工具import 利用備份的檔案把資料物件匯入到資料庫的過程。物理備份即可在資料庫open的狀態下進行也可在關閉資料庫後進行,但是邏輯備份和恢復只...
oracle資料庫(表)的邏輯備份與恢復
邏輯備份是指使用工具 export 將資料物件的結構和資料匯出到檔案的過程,邏輯恢復是指當資料庫物件被誤操作而損壞後使用工具 import 利用備份的檔案把資料物件匯入到資料庫的過程。物理備份即可在資料庫 open 的狀態下進行也可在關閉資料庫後進行,但是邏輯備份和恢復只能在 open 的狀態下進行...