1. 程式人生 > >ORACLE匯入資料庫詳細步驟

ORACLE匯入資料庫詳細步驟

登入PLSQL

點選然後開啟命令視窗執行命令

建立表空間(紅色字型是你需要建立表空間的地址,藍色的是表空間大小)

create temporary tablespace ZJY_TEMP 

tempfile '/usr/u01/app/oradata/orcl/COUP'

size 500m

autoextend on 

next 500m maxsize 20480m 

extent management local; 

 

在表空間內建立使用者(本次使用了3個使用者,紅色的是使用者名稱,藍色的是表空間名)

create user fe_base5 identified by "oracle" default tablespace COUP;

create user fe_ap5 identified by "oracle" default tablespace COUP;

create user fe_erp identified by "oracle" default tablespace COUP;

 

給使用者授權(給你需要使用的使用者授權,紅色的是使用者名稱,藍色的是需要新增的許可權)

grant connect,resource,dba to fe_erp;

grant connect,resource,dba to fe_ap5;

grant connect,resource,dba to fe_base5;

 

開啟CMD執行匯入資料庫命令(藍色的是需要匯入的資料庫地址)

imp fe_base5/[email protected]/orcl file=D:\oracleshujuku\fe_base5.dmp full=y;

imp fe_app5/[email protected]/orcl file=D:\oracleshujuku\fe_app5.dmp full=y;

imp fe_erp/[email protected]/orcl file=D:\oracleshujuku\fe_erp.dmp ful