主頁 > 知識(shí)庫 > Oracle 數(shù)據(jù)庫導(dǎo)出(exp)導(dǎo)入(imp)說明

Oracle 數(shù)據(jù)庫導(dǎo)出(exp)導(dǎo)入(imp)說明

熱門標(biāo)簽:廣州市400電話辦理 修改高德地圖標(biāo)注 南通防封外呼系統(tǒng)運(yùn)營商 語音電話機(jī)器人缺點(diǎn) 淮安自動(dòng)外呼系統(tǒng)開發(fā) 語音電話機(jī)器人營銷方案 地圖標(biāo)注原件 百變地圖標(biāo)注 宜賓外呼系統(tǒng)廠家
buffer:下載數(shù)據(jù)緩沖區(qū),以字節(jié)為單位,缺省依賴操作系統(tǒng)
consistent:下載期間所涉及的數(shù)據(jù)保持read only,缺省為n
direct:使用直通方式 ,缺省為n
feeback:顯示處理記錄條數(shù),缺省為0,即不顯示
file:輸出文件,缺省為expdat.dmp
filesize:輸出文件大小,缺省為操作系統(tǒng)最大值
indexes:是否下載索引,缺省為n,這是指索引的定義而非數(shù)據(jù),exp不下載索引數(shù)據(jù)
log:log文件,缺省為無,在標(biāo)準(zhǔn)輸出顯示
owner:指明下載的用戶名
query:選擇記錄的一個(gè)子集
rows:是否下載表記錄
tables:輸出的表名列表
導(dǎo)出整個(gè)實(shí)例
exp dbuser/oracle file=oradb.dmp log=oradb.log full=y consistent=y direct=y
user應(yīng)具有dba權(quán)限
導(dǎo)出某個(gè)用戶所有對(duì)象
exp dbuser/oracle file=dbuser.dmp log=dbuser.log owner=dbuser buffer=4096000 feedback=10000
導(dǎo)出一張或幾張表
exp dbuser/oracle file=dbuser.dmp log=dbuser.log tables=table1,table2 buffer=4096000 feedback=10000
導(dǎo)出某張表的部分?jǐn)?shù)據(jù)
exp dbuser/oracle file=dbuser.dmp log=dbuser.log tables=table1 buffer=4096000 feedback=10000 query=\”where col1=\'…' and col2 \…\”
不可用于嵌套表
以多個(gè)固定大小文件方式導(dǎo)出某張表
exp dbuser/oracle file=1.dmp,2.dmp,3.dmp,… filesize=1000m tables=emp buffer=4096000 feedback=10000
這種做法通常用在:表數(shù)據(jù)量較大,單個(gè)dump文件可能會(huì)超出文件系統(tǒng)的限制
直通路徑方式
direct=y,取代buffer選項(xiàng),query選項(xiàng)不可用
有利于提高下載速度
consistent選項(xiàng)
自export啟動(dòng)后,consistent=y凍結(jié)來自其它會(huì)話的對(duì)export操作的數(shù)據(jù)對(duì)象的更新,這樣可以保證dump結(jié)果的一致性。但這個(gè)過程不能太長(zhǎng),以免回滾段和聯(lián)機(jī)日志消耗完
imp
將exp下載的dmp文件上載到數(shù)據(jù)庫內(nèi)。
buffer:上載數(shù)據(jù)緩沖區(qū),以字節(jié)為單位,缺省依賴操作系統(tǒng)
commit:上載數(shù)據(jù)緩沖區(qū)中的記錄上載后是否執(zhí)行提交
feeback:顯示處理記錄條數(shù),缺省為0,即不顯示
file:輸入文件,缺省為expdat.dmp
filesize:輸入文件大小,缺省為操作系統(tǒng)最大值
fromuser:指明來源用戶方
ignore:是否忽略對(duì)象創(chuàng)建錯(cuò)誤,缺省為n,在上載前對(duì)象已被建立往往是一個(gè)正常現(xiàn)象,所以此選項(xiàng)建議設(shè)為y
indexes:是否上載索引,缺省為n,這是指索引的定義而非數(shù)據(jù),如果上載時(shí)索引已建立,此選項(xiàng)即使為n也無效,imp自動(dòng)更新索引數(shù)據(jù)
log:log文件,缺省為無,在標(biāo)準(zhǔn)輸出顯示
rows:是否上載表記錄
tables:輸入的表名列表
touser:指明目的用戶方
導(dǎo)入整個(gè)實(shí)例
imp dbuser/oracle file=oradb.dmp log=oradb.log full=y buffer=4096000 commit=y ignore=y feedback=10000
導(dǎo)入某個(gè)用戶所有對(duì)象
imp dbuser/oracle file=dbuser.dmp log=dbuser.log fromuser=dbuser touser=dbuser2 buffer=2048000 commit=y ignore=y feedback=10000
導(dǎo)入一張或幾張表
imp dbuser2/oracle file=user.dmp log=user.log tables=table1,table2 fromuser=dbuser touser=dbuser2 buffer=2048000 commit=y ignore=y feedback=10000
以多個(gè)固定大小文件方式導(dǎo)入某張表
imp dbuser/oracle file=\(1.dmp,2.dmp,3.dmp,…\) filesize=1000m tables=emp fromuser=dbuser touser=dbuser2 buffer=4096000 commit=y ignore=y feedback=10000
您可能感興趣的文章:
  • 使用imp和exp命令對(duì)Oracle數(shù)據(jù)庫進(jìn)行導(dǎo)入導(dǎo)出操作詳解
  • Oracle導(dǎo)入導(dǎo)出數(shù)據(jù)的幾種方式
  • oracle數(shù)據(jù)與文本導(dǎo)入導(dǎo)出源碼示例
  • oracle數(shù)據(jù)庫導(dǎo)入導(dǎo)出命令解析
  • 利用PL/SQL從Oracle數(shù)據(jù)庫導(dǎo)出和導(dǎo)入數(shù)據(jù)
  • Oracle數(shù)據(jù)庫密碼重置、導(dǎo)入導(dǎo)出庫命令示例應(yīng)用
  • oracle數(shù)據(jù)庫導(dǎo)出和oracle導(dǎo)入數(shù)據(jù)的二種方法(oracle導(dǎo)入導(dǎo)出數(shù)據(jù))
  • oracle數(shù)據(jù)庫導(dǎo)入導(dǎo)出命令使用方法
  • oracle 數(shù)據(jù)泵導(dǎo)入導(dǎo)出介紹
  • 淺談入門級(jí)oracle數(shù)據(jù)庫數(shù)據(jù)導(dǎo)入導(dǎo)出步驟

標(biāo)簽:池州 股票投資 襄陽 南平 通化 嘉峪關(guān) 聊城 南平

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Oracle 數(shù)據(jù)庫導(dǎo)出(exp)導(dǎo)入(imp)說明》,本文關(guān)鍵詞  Oracle,數(shù)據(jù)庫,導(dǎo)出,exp,導(dǎo)入,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Oracle 數(shù)據(jù)庫導(dǎo)出(exp)導(dǎo)入(imp)說明》相關(guān)的同類信息!
  • 本頁收集關(guān)于Oracle 數(shù)據(jù)庫導(dǎo)出(exp)導(dǎo)入(imp)說明的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章