1、開啟cmd;
2、輸入 exp 使用者名稱/使用者密碼@資料庫位址 file=匯出資料庫儲存路徑和檔名.dmp
例:exp u_power/[email protected]:1521/orcl file=d:user.dmp
(注意:fill=y;匯出是不能輸入這個,否則是匯出資料庫所有使用者)
3、開啟pl/sql;
建立表空間
create tablespace t_u_power datafile 『d:\ora\tbs_lims.dbf』 size 100m autoextend on next 50m maxsize unlimited;
建立使用者、密碼、預設表空間
create user u_power identified by u_power default tablespace t_u_power;
給使用者賦予許可權
grant connect,resource,dba,create view to u_lims_gs;
grant create session to u_lims_gs;
4、開啟cmd;
imp u_power/[email protected]:1521/orcl file=d:user.dmp fill=y;
(注意:fill=y 表示全部匯入,建議加上)
Oracle 資料庫 匯入匯出
匯入匯出時要,通過 執行 進行到oracle的安裝目錄的 bin 目錄下導 例如 d oracle product 10.1.0 db 1 bin 匯出分三種 匯出 表 方案 資料庫 1.1.1 匯出自己的表 說明 使用者 密碼 資料庫例項 表名 可多個 檔案路徑 exp userid scott ...
oracle資料庫匯入匯出
用工具匯入 匯出 資料 工具 t 匯出表 x 工具 t 匯出表 x 所選執行檔案位置 e oracle product 10.2.0 db 1 bin imp.exe exp.exe 命令匯入匯出 oracle匯入dmp檔案命令 1 dmp檔案中的資料匯入資料庫 1.首先進入cmd命令視窗 2.執行...
Oracle資料庫匯入匯出
我們經常會在資料備份或環境移至的時候用到oracle的匯入匯出 下面我們來詳細看一下匯入匯出的步驟 1.命令列下匯出dmp檔案 資料匯出,可以帶版本 expdp bp oracle bp oracle orcl directory dump dir dumpfile bp oracle.dmp ve...