您好,登錄后才能下訂單哦!
在使用exp的時候,需要注意以下幾點
當前客戶端版本、目標客戶端的版本、注意需要設置字符集,也就是NLS_LANG
參考oracle字符集的設置
NLS_LANG格式為:
[NLS_LANGUAGE]_[NLS_TERRITORY].[NLS_CHARACTERSET].
NLS_LANGUAGE指的是Oracle消息使用的語言,日期中月分和日顯示
NLS_TERRITORY指的是貨比和數字格式,地區和計算星期及日期的習慣
NLS_CHARACTERSET指的是控制客戶端應用程序使用的字符集
select* from nls_database_parameters ;
如:NLS_LANG=AMERICAN_AMERICA.ZHS16GBK
SQL>SELECT USERENV ('language') FROM DUAL;
USERENV('LANGUAGE')
----------------------------------------------------
AMERICAN_AMERICA.ZHS16GBK
http://docs.oracle.com/cd/E12102_01/books/AnyInstAdm784/AnyInstAdmPreInstall18.html
邏輯導出
exp user1/password@db1 file=TABLE1.dmp log=TABLE1.log
tables=table1 buffer=10485760 constraints=n compress=n statistics=none
indexes=n triggers=n grants=n
1.表模式導出
exp hr/hr file=hr.dmp tables=employees,locations log=hr.log
exp hr/hr file=hr.dmp tables=\(employees,locations\) log=hr.log
exp hr/hr file=hr.dmp tables=scott.emp log=scott.log
(需要exp_full_database權限)
grant exp_full_database to hr ;
2.用戶模式導出
exp hr/hr file=hr_all.dmp owner=hr log=hr_all.log
exp hr/hr file=hr_scott.dmp owner=\(hr,scott\) log=hr_scott.log
3.數據庫模式導出
需要exp_full_database權限)
exp hr/hr file=full.dmp full=y log=full.log
4.可傳輸表空間模式
待補充
其他參數使用:
不導出索引、約束、授權和觸發器
exp hr/hr file=all.dmp indexes=n constraints=n grants=n triggers=n
文件大小限制 估算導出數據大小
select sum(bytes)/1024/1024 from user_segments;
預計導出的dmp文件大小,不能超出系統限制(fat32單個文件不能超過4G,ntfs單個文件不能超過2T,ext3理想情況下不能超過2T)
exp hr/hr file=limits1.dmp,limits2.dmp filesize=2048M log=limits.log
exp hr/hr file=limits1.dmp,limits2.dmp filesize=130K log=limits.log
如果指定filesize的大小,必須為file參數指定文件名,多個之間使用逗號分隔,如果指定的文件多于實際產生的文件,多余指定的文件不會生成。如果少于實際產生的文件,那么在導出的過程中會提示輸入新的文件名,如Export file: expdat.dmp >
參數文件使用
cat parameter.txt
userid=scott/tiger
file=scott.dmp
tables=emp
log=scott.log
exp parfile=parameter.txt
按照條件導出
cat parameter.txt
userid=scott/tiger
file=scott.dmp
tables=emp
query='whereempno = 7369'
log=scott.log
exp parfile=parameter.txt
或者
exp scott/tiger file=scott.dmp tables=emp query="'where empno=7369'" log=scott.log
條件中存在字符串
cat parameter.txt
userid=scott/tiger
file=scott.dmp
tables=emp
query='wheresal < 8000 and job = ''SALESMAN'''
log=scott.log
exp parfile=parameter.txt
只導出表結構
expscott/tiger file=scott.dmp rows=n owner=scott log=scott.log
direct參數
如果導出的對象中存在blob,clob,采用直接路徑導出會報錯
8i,9i中特別注意,一般單個表加direct=y,按照用戶或數據庫一般不使用直接方式
個人在使用的使用一般常用system進行操作。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。