從服務器將Oracle數據庫導出到本地Oracle數據庫的方法,oracle數據庫
1.將服務器上的Oracle數據庫導入到本地
在CMD模式下執行以下命令:
exp username1/password@服務器端數據庫 file=本地硬盤:/文件名.dmp
例如: exp admin/123123@DB file=e:
db.dmp
2.建立本地數據庫(默認已經安裝Oracle客戶端並且建立了本地數據庫)
3.創建一個新用戶,並賦予DBA權限
//創建一個用戶名為test,口令(密碼)為123456,默認表空間為users,並且該用戶使用users表空間不受限制
create user test identified by 123456
default tablespace users
quota unlimited on users
//賦予test用戶DBA權限
grant dba to test;
4.導入到本地Oracle數據庫
在CMD模式下執行以下命令
imp username2/密碼 file=本地硬盤:/文件名.dmp fromuser=username1 touser=username2 ignore=y
例如:imp test/123456 file=e:db
.dmp fromuser=admin touser=test ignore=y