如果需要匯出空表,需要先執行"select 『alter table 『||table_name||』 allocate extent;』 from user_tables where num_rows=0;",然後將查詢出來的結果執行一遍。
1、完全模式:
exp username/password buffer=64000 file=c:\full.dmp full=y
如果要執行完全匯出,必須具有特殊的許可權
2、使用者模式:
exp username/password buffer=64000 file=c:\username.dmp owner=username full=y
這樣使用者username的所有物件被輸出到檔案中。
3、表模式:
exp username/password buffer=64000 file=c:\username.dmp owner=username tables=(users) full=y
這樣使用者username的表users就被匯出
4.完全匯出
exp username/password@orcl file=/home/username.dmp
5.匯入
imp username/password file=/home/username.dmp fromuser=usera touser=userb ignore=y full=y;
把username.dmp檔案中的usera使用者下的資料匯入到userb使用者下的資料
如果要完全匯入,去掉fromuser=usera touser=userb
6.用於匯出的可執行檔案(.bat)
@echo off
echo starting bakup data.........
set dd=%date%
set tt=%time%
set tt1=%dd:~0,4%%dd:~5,2%%dd:~8,2%%tt:~0,2%%tt:~3,2%%tt:~6,2%
set tt2=%tt1: =0%
echo %tt2%
exp username/[email protected]:1521/orcl owner=username file=f:/oracledbback/username%tt2%.dmp log=f:/oracledbback/username%tt2%.txt
echo bakup completed.
echo ------
oracle資料匯入匯出
語法 imp userid password 資料庫全域性名 file dmp檔案的目錄 其它引數 獲取幫助,敲入 imp help y import常用的引數 1 file 指定匯入檔名 fromuser 允許匯入指定的使用者擁有的表 full full y時,匯入dmp檔案中所有的事物 igno...
Oracle資料匯入匯出
資料庫的維護過程,難免遇到一些表的備份和恢復工作。為了方便起見,我將這些重複的工作整理成了執行在windows上的批處理,和執行在aix伺服器上的kshell指令碼。指令碼的作業內容就是,指定具體的表集合,分檔案逐表備份和恢復。如果是經常性的指定的固定表的話,可以修改以陣列方式的指令碼。如果是經常改...
oracle 資料匯出匯入
資料庫的匯出匯入 匯出表步驟 1 匯出表結構與資料 2 匯出序列 3 匯出觸發器 4 匯出檢視 匯出表工具 plsql developer 設定環境變數 變數名 nls lang 變數值 american america.zhs16gbk 這裡主要是解決資料庫的字符集問題,根據資料庫的字符集設定,保...