如何用exp 匯出 某個表的某幾列資料
透過查詢exp help=y 的命令幫助資訊,確實還沒這項功能 10g好像也沒有這功能
不過我們可以變通一下 達到我們的需要 透過create table tablename as select 方法
測試如下:
C:\Documents and Settings\Paul Yi>sqlplus paul/paul
SQL*Plus: Release 9.2.0.4.0 - Production on Mon May 26 10:14:51 2008
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
Connected to:
Oracle9i Enterprise Edition Release 9.2.0.4.0 - Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.4.0 - Production
SQL> create table test as select * from user_objects;
Table created.
SQL> desc test;
Name Null? Type
----------------------------------------- -------- ----------------------------
OBJECT_NAME VARCHAR2(128)
SUBOBJECT_NAME VARCHAR2(30)
OBJECT_ID NUMBER
DATA_OBJECT_ID NUMBER
OBJECT_TYPE VARCHAR2(18)
CREATED DATE
LAST_DDL_TIME DATE
TIMESTAMP VARCHAR2(19)
STATUS VARCHAR2(7)
TEMPORARY VARCHAR2(1)
GENERATED VARCHAR2(1)
SECONDARY VARCHAR2(1)
SQL> select count(*) from test;
COUNT(*)
----------
25
假設我們匯出只需要object_id,object_name 兩個欄位的資料
SQL> create table test_column as select object_id,object_name from test;
Table created.
SQL>
C:\Documents and Settings\Paul Yi>exp paul/paul tables=(test_column) file=c:\tes
t.dmp log=c:\test.log buffer=10240000
Export: Release 9.2.0.4.0 - Production on Mon May 26 10:19:54 2008
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
Connected to: Oracle9i Enterprise Edition Release 9.2.0.4.0 - Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.4.0 - Production
Export done in ZHS16GBK character set and AL16UTF16 NCHAR character set
About to export specified tables via Conventional Path ...
. . exporting table TEST_COLUMN 25 rows exported
Export terminated successfully without warnings.
C:\Documents and Settings\Paul Yi>
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/7199859/viewspace-310289/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- mysql匯出某個表的部分資料MySql
- MYSQL 匯出資料庫中某張表的部分數…MySql資料庫
- oracle 匯出某個使用者下的表Oracle
- 匯出Sql server 2005資料庫中某表的資料SQLServer資料庫
- SQLSERVER查詢某個資料庫有幾張表SQLServer資料庫
- mysqldump 備份匯出資料排除某張表或多張表MySql
- 兩表中某列的資料差異
- 如何dump某個表的資料快
- 從MongoDB compass中匯出某個時間段的資料MongoDB
- 如何查詢某個資料表中除某個欄位的所有資訊???
- oracle10g exp可否用一個使用者匯出另一個使用者的某表呢?Oracle
- Greenplum訪問某個模式的某個表模式
- 【EXP】使用EXP的QUERY選項匯出表中部分資料
- mysql資料表按照某個欄位分類輸出MySql
- exp匯出一個表中符合查詢條件的資料
- 資料匯入匯出EXP/IMP
- exp/imp匯出匯入資料
- 如何找到某個 ABAP structure 某欄位的源頭來自哪個資料庫表Struct資料庫
- MySQL-取某個欄位表中每組幾行資料方式MySql
- 【實驗】【PARTITION】exp匯出分割槽表資料
- oracle資料的匯入匯出imp/expOracle
- oracle 限定某個IP或者某幾個IP可以登入的方法 。Oracle
- oracle資料匯出匯入(exp/imp)Oracle
- Oracle 對某列的部分資料建立索引Oracle索引
- Sql查詢 一個表中某欄位的資料在另一個表中某欄位中不存在的SQL
- 利用oracle job定時向某個表插入資料Oracle
- Oracle資料匯入匯出imp/exp命令Oracle
- 在oracle中,匯出某使用者的資料和匯入的具體步驟Oracle
- Oracle exp只匯出部分資料Oracle
- 【GP】透過資料字典檢視某個表的欄位
- 在dba_tables 這個資料字典查不到某個表
- EXP邏輯匯出資料的呼叫方式
- 查詢某個表的索引資訊索引
- Oracle資料匯入匯出imp/exp命令(轉)Oracle
- 資料泵避免個別表資料的匯出
- 如何用PLSQL匯出資料庫存表結構資訊SQL資料庫
- mongodb查詢資料庫中某個欄位中的值包含某個字串的方法MongoDB資料庫字串
- oracle實用sql(12)--查詢資料是否在某個使用者下各個表的各個列OracleSQL