oracle使用cmd命令匯入匯出資料

2021-09-25 10:15:11 字數 1218 閱讀 7418

--

imp 方式匯入dmp檔案

--(1)建立表空間

create tablespace 表空間 datafile '

d:\***\***.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:\***\***.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命令

資料庫匯出功能 1 將資料庫test完全匯出,使用者名稱system 密碼manager 匯出到d daochu.dmp中 exp system manager test file d daochu.dmp full y 2 將資料庫中system使用者與sys使用者的表匯出 exp system ...

oracle資料庫匯入匯出cmd命令

資料庫匯出功能 1 將資料庫test完全匯出,使用者名稱system 密碼manager 匯出到d daochu.dmp中 exp system manager test file d daochu.dmp full y 2 將資料庫中system使用者與sys使用者的表匯出 exp system ...

oracle 資料庫Cmd命令匯入匯出

imp 匯入資料庫 1.直接匯入資料表 imp username passwork orcl file d aa.dmp eg imp 使用者名稱 密碼 orcl file d dmp存放的路徑 exp匯出資料庫 1.匯出多張資料表 exp username passwork orcl file d...