匯出資料庫

2021-04-19 03:15:10 字數 816 閱讀 5623

exp:

引數例項

匯出整個例項

exp wjh/orcl file=wjh.dmp log=wjh.log full=y consistent=y direct=y

wjh應具有dba許可權

匯出某個使用者所有物件

exp wjh/orcl file=wjh.dmp log=wjh.log owner=dbuser buffer=4096000 feedback=10000

匯出一張或幾張表

exp wjh/orcl file=wjh.dmp log=wjh.log tables=table1,table2 buffer=4096000 feedback=10000

匯出某張表的部分資料 不可用於巢狀表

exp wjh/orcl file=wjh.dmp log=wjh.log tables=table1 buffer=4096000 feedback=10000 query=/」where col1=/』…/』 and col2 /<…/」

以多個固定大小檔案方式匯出某張表

exp wjh/orcl file=1.dmp,2.dmp,3.dmp,… filesize=1000m tables=emp buffer=4096000 feedback=10000

這種做法通常用在:表資料量較大,單個dump檔案可能會超出檔案系統的限制

遠端匯出例項

exp wjh/orcl@服務名 file=wjh.dmp log=wjh.log full=y consistent=y direct=y

服務名可以在oracle的net manager裡指定遠端服務的例項名

MySQL匯出匯出資料庫

預設匯出路徑為mysql的內建路徑,因此這裡都加上了 documents 作為路徑。匯出整個資料庫 mysqldump u root p test documents test.sql 匯出資料庫乙個表 mysqldump h hostname u username p password datab...

搭建資料庫 匯出匯入資料庫

二 零碎知識 三 遇到的問題 expdp test source a123456 例項名 directory dump dir1 dumpfile test source.dmp schemas test source logfile test source.logexpdp test source...

資料匯出Excel表 資料庫資料匯出

public static hashmapcolumn new hashmap static param table 要匯出的表 param name 匯出的excel表名稱 表頭 throws exception public void createexcel string table,strin...