1. 程式人生 > >oracle使用cmd命令導入導出數據

oracle使用cmd命令導入導出數據

schema reat 表空間 dump size code grant rec cmd

--IMP 方式導入dmp文件
--(1)創建表空間
create tablespace 表空間 datafile D:\xxx\xxx.dbf size 1024M autoextend on;
--(2)創建用戶
create user 用戶名 identified by 密碼 default tablespace 表空間;
--(3)賦予權限
grant connect,resource,imp_full_database,unlimited tablespace to 用戶名;
grant dba to 用戶名;
--(4)導入數據
imp 用戶名/密碼@實例名 file
=dmp文件路徑 log=要導出的日誌路徑 full=y; --IMPDB 數據泵方式導入dmp文件 --(1)創建表空間 create tablespace 表空間 datafile D:\xxx\xxx.dbf size 1024M autoextend on; --(2)創建用戶 create user 新用戶名 identified by 密碼 default tablespace 表空間; --(3)賦予權限 grant connect,resource,imp_full_database,unlimited tablespace to 新用戶名; grant dba to
新用戶名; --(4)建立目錄 create directory 目錄名 as 目錄路徑; --(5)路徑手動創建 --(6)對路徑授權 grant read,write on directory 目錄名 to 新用戶名; --(7)導入數據(Dos命令) impdp 新用戶名/密碼 directory=目錄名 dumpfile=dmp文件路徑 logfile=導出日誌路徑 --(8)導出數據 expdp 新用戶名/密碼@orcl schemas=用戶名 directory=目錄名 dumpfile=dmp文件路徑 logfile=導出日誌路徑

oracle使用cmd命令導入導出數據