oracle匯入匯出入門例項

2021-09-20 22:58:02 字數 1153 閱讀 1717

實驗環境

windows 7 x64

oracle 11.2.0 .1 x64

一、查詢使用者會話系統程序號

1.查詢sid,serial#

select sid,serial#,username, machine,status from v$session where username like 'sys';

2.根據sid,serial#查詢spid系統程序id

select p.spid 

from v$session s, v$process p     

where p.addr=s.paddr 

and s.sid=sid

and s.serial#=serial#;    

二、exp/imp邏輯匯出匯入表

1.匯出t1表內容到t1.dmp檔案

注意設定字符集

e:\>set nls_lang=simplified chinese_china.zhs16gbk

e:\>exp test/test@test file=t1.dmp tables=t1

2.匯入t1.dmp檔案到t1表

在匯入之前可以先刪除舊表,以便匯入後驗證

注意字符集設定必須與匯出相同

e:\>imp test/test@test file=t1.dmp tables=t1

三、expdp/impdp資料幫浦備份恢復

1.sysdba使用者建立備份目錄

sql> select * from dba_directories where directory_name='expdir';

sql> select * from dba_directories where directory_name='expdir';

sql> grant read,write on directory expdir to test;

2.匯出資料庫表

e:\>expdp test/test@test dumpfile=t1dp.dmp directory=expdir tables=t1

3.匯入備份檔案內容

在匯入之前可以先刪除舊表,以便匯入後驗證

e:\>impdp test/test@test dumpfile=t1dp.dmp directory=expdir tables=t1

oracle匯出,匯入

匯出,在dos下執行 1.exp username userpassword databasename 可以是資料庫也可是遠端的,如username userpassword caac135 2.enter array fetch buffer size 4096 回車 3.export file ...

oracle匯入匯出

sqlplus system system egov create directory dump dir as d dbback exit expdp system system egov directory dump dir dumpfile urbanyw.dmp schemas urbanyw...

Oracle匯入匯出

最簡單 exp duser duser remote localinstancename owner duser file file path dmp imp duser duser remote localinstancename file file path dmp 詳細出處參考 win10下o...