以下的文章主要是對Oracle exp篇,數據導出常用工具EXP的介紹,我們大家都知道Oracle EXP是用於客戶端的工具,此工具可以用於Oracle客戶端與Oracle服務器端。當在Oracle客戶端使用EXP工具時,必須帶有連接字符串;
當在Oracle服務器端使用EXP工具時,可以不帶字符串。導出包括導出表、導出方案、導出數據庫三種模式。
(1)導出表
導出表是指使用EXP工具將一個或多個表的結構和數據存儲到OS文件中,導出表是使用TABLES選項來完成的。
普通用戶可以導出其自身方案的所有表,但如果要導出其他方案的表,則要求該用戶必須具有EXP_FULL_DATABASE角色或DBA角色。另外當導出表時,默認情況下會導出相應表上的所有索引、觸發器、約束。下面以SYSTEM用戶導出SCOTT.DEPT表為例,示例如下:
- exp system/Oracle@charge TABLE=scott.dept,scott.emp FILE=tab1.dmp
(2)導出方案
導出方案是指使用Oracle EXP工具將一個或多個方案中的所有對象記數據存儲到OS文件中,導出表是使用OWNER選項來完成的。
普通用戶可以導出其自身方案,但如果要導出其他方案,則要求該用戶必須具有DBA角色或EXP_FULL_DATABASE角色。當用戶要導出其自身方案的所有對象時,可以不指定OWNER選項,下面以SYSTEM用戶導出SCOTT方案的所有對象為例,示例如下:
- exp system/Oracle@charge OWNER=scott FILE=schemal.dmp
以上為命令行方式進行數據的導出,EXP工具還可以以交互的方式進行數據導出。
(1)導出表(交互方式)
- [Oracle@ora-asm3 dbs]$ exp
Export: Release 10.2.0.1.0 - Production on 星期一 6月 16 16:24:26 2008
- Copyright (c) 1982, 2005, Oracle. All rights reserved.
Username: charge 輸入用戶名
PassWord: 輸入密碼
- Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
- With the Partitioning, OLAP and Data Mining options
Enter array fetch buffer size: 4096 > 輸入緩沖區大小,可以默認也可以自定義,如果數據文件較大,建議設置的大一些。
Export file: expdat.dmp > charge01.dmp 輸入導出的文件名,必須以”.dmp”文件做為擴展名。
(2)U(sers), or (3)T(ables): (2)U > t 輸入導出類型,默認為用戶(也就是方案),在此輸入t,為導出表
Export table data (yes/no): yes > 是否導出表中的數據,如果選NO,則導出表結構。
Compress extents (yes/no): yes > 是否對數據壓縮
- Export done in ZHS16GBK character set and AL16UTF16 NCHAR character set
- About to export specifIEd tables via Conventional Path ...
Table(T) or Partition(T:P) to be exported: (RETURN to quit) > clIEnts 輸入表名
開始導出clIEnts表數據
- . . exporting table CLIENTS 10 rows exported
Table(T) or Partition(T:P) to be exported: (RETURN to quit) > 如果沒有要導出的數據時,按回車退出。
- Export terminated successfully without warnings.
提示導出成功,沒有任何告警。
(2)導出方案(交互方式)
- [Oracle@ora-asm3 dbs]$ exp
Export: Release 10.2.0.1.0 - Production on 星期一 6月 16 16:23:47 2008
- Copyright (c) 1982, 2005, Oracle. All rights reserved.
Username: charge 輸入用戶名
PassWord: 輸入密碼
- Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
- With the Partitioning, OLAP and Data Mining options
Enter array fetch buffer size: 4096 > 輸入緩沖區大小,可以默認也可以自定義,如果數據文件較大,建議設置的大一些。
Export file: expdat.dmp > charge.dmp 輸入導出的文件名,必須以”.dmp”做為擴展名。
(2)U(sers), or (3)T(ables): (2)U > u 輸入導出類型,默認為用戶(方案),可以直接回車,也可以輸入u。
Export grants (yes/no): yes > 導入權限
Export table data (yes/no): yes > 是否導出表中的數據,如果選NO,則導出表結構。
Compress extents (yes/no): yes > 是否對數據壓縮
- Export done in ZHS16GBK character set and AL16UTF16 NCHAR character set
- . exporting pre-schema procedural objects and actions
- . exporting foreign function library names for user CHARGE
- . exporting PUBLIC type synonyms
- . exporting private type synonyms
- . exporting object type definitions for user CHARGE
- About to export CHARGE's objects ...
- . exporting database links
- . exporting sequence numbers
- . exporting cluster definitions
- . about to export CHARGE's tables via Conventional Path ...
- . . exporting table BALANCE 0 rows exported
- . . exporting table BALANCEFINISHED 0 rows exported
- ………………
- . exporting synonyms
- . exporting vIEws
- . exporting stored procedures
- . exporting Operators
- . exporting referential integrity constraints
- . exporting triggers
- . exporting indextypes
- . exporting bitmap, functional and extensible indexes
- . exporting posttables actions
- . exporting materialized vIEws
- . exporting snapshot logs
- . exporting job queues
- . exporting refresh groups and children
- . exporting dimensions
- . exporting post-schema procedural objects and actions
- . exporting statistics
- Export terminated successfully without warnings.
提示導出成功,沒有任何告警。