中文字幕免费精品_亚洲视频自拍_亚洲综合国产激情另类一区_色综合咪咪久久

Oracle導入導出提示EXP-0006:出現(xiàn)內(nèi)部不一致的錯誤解決辦法
來源:易賢網(wǎng) 閱讀:2563 次 日期:2015-03-31 14:57:56
溫馨提示:易賢網(wǎng)小編為您整理了“Oracle導入導出提示EXP-0006:出現(xiàn)內(nèi)部不一致的錯誤解決辦法”,方便廣大網(wǎng)友查閱!

exp、imp是ORACLE幸存的最古老的兩個操作系統(tǒng)命令行工具,導入(IMP)/導出(EXP),昨天在Oracle用exp、imp導入導出報EXP-0006:出現(xiàn)內(nèi)部不一致的錯誤。

以前用exp、imp導庫命令成功的實現(xiàn)了Oracle數(shù)據(jù)庫的導出、導入,對此,昨天再對服務器新安裝的Oracle數(shù)據(jù)庫用exp、imp導庫,一直報“EXP-0006:出現(xiàn)內(nèi)部不一致的錯誤”,于是在網(wǎng)上百度,嘗試其他導庫方式,發(fā)現(xiàn)采用expdp、impdp數(shù)據(jù)泵同樣可以完成數(shù)據(jù)庫的導出、導入,而且數(shù)據(jù)泵與傳統(tǒng)導出導入有如下區(qū)別:

1.EXP和IMP是客戶段工具程序, EXPDP和IMPDP是服務端的工具程序;

2.EXP和IMP效率比較低. EXPDP和IMPDP效率高;

3.數(shù)據(jù)泵功能強大并行、過濾、轉(zhuǎn)換、壓縮、加密、交互等等;

4.數(shù)據(jù)泵不支持9i以前版本, EXP/IMP短期內(nèi)還是比較適用;

5.同exp/imp數(shù)據(jù)泵導出包括導出表,導出方案,導出表空間,導出數(shù)據(jù)庫4種方式。

有了理論支持,下面開始實戰(zhàn)。

expdp導出Oracle數(shù)據(jù)庫

1.在sqlplus下創(chuàng)建Directory, 優(yōu)點在于讓我們可以在Oracle數(shù)據(jù)庫中靈活的對文件進行讀寫操作,極大的提高了Oracle的易用性和可擴展性。

命令:createdirectory oracleDB as 'D:\OracleDB';

2.把讀寫權(quán)限授予特定用戶

命令:Grantread,write on directory oracleDB to radpcs;

3.在dos窗口執(zhí)行expdp導出命令

命令:expdp directory=oracleDB dumpfile =20150226.dmp logfile=20150226.logFULL=y;

到此導出工作完成,下面講解如何用impdp導入Oracle數(shù)據(jù)庫。

impdp導入Oracle數(shù)據(jù)庫

1.以sysdba級別登錄Oracle數(shù)據(jù)庫

命令:--sqlplus /nolog

--connas sysdba

2.創(chuàng)建數(shù)據(jù)表空間

命令:

--創(chuàng)建數(shù)據(jù)表空間

CREATE TABLESPACE RADPCS_DATA

LOGGING

DATAFILE 'D:\OracleDB\radpcs_DATA.DBF' SIZE 200M REUSE AUTOEXTEND

ON NEXT 10M MAXSIZE 16383M EXTENT MANAGEMENT LOCAL UNIFORM

SIZE 1024K;

--創(chuàng)建索引表空間

CREATE TABLESPACE RADPCS_INDX

LOGGING

DATAFILE 'D:\OracleDB\radpcs_INDX.DBF' SIZE 200M REUSE AUTOEXTEND

ON NEXT 10M MAXSIZE 16383M EXTENT MANAGEMENT LOCAL UNIFORM

SIZE 1024K;

這步很關(guān)鍵,創(chuàng)建的表空間需要和原Oracle表空間名稱、個數(shù)相同,否則會導入失敗。如果不知道原表空間名稱、個數(shù),就先創(chuàng)建一個臨時的表空間進行導入,導入過程中根據(jù)錯誤提示,比如“RADPCS1_DATA表空間不存在”提示,缺哪個創(chuàng)建哪個。

3.創(chuàng)建用戶、對用戶授權(quán)

--創(chuàng)建用戶

create user radpcs identified by ictradpcs

default tablespace radpcs_data

quota unlimited on radpcs_data

quota unlimited on radpcs_indx;

--授權(quán)

grant aq_administrator_role to radpcs;

grant aq_user_role to radpcs;

grant authenticateduser to radpcs;

grant connect to radpcs;

grant ctxapp to radpcs;

grant dba to radpcs;

grant delete_catalog_role to radpcs;

grant ejbclient to radpcs;

grant execute_catalog_role to radpcs;

grant exp_full_database to radpcs;

grant gather_system_statistics to radpcs;

grant hs_admin_role to radpcs;

grant imp_full_database to radpcs;

grant javadebugpriv to radpcs;

grant javaidpriv to radpcs;

grant javasyspriv to radpcs;

grant javauserpriv to radpcs;

grant java_admin to radpcs;

grant java_deploy to radpcs;

grant logstdby_administrator to radpcs;

grant oem_monitor to radpcs;

grant olap_dba to radpcs;

grant recovery_catalog_owner to radpcs;

grant resource to radpcs;

grant select_catalog_role to radpcs;

grant xdbadmin to radpcs;

-- Grant/Revoke system privileges

grant administer database trigger to radpcs;

grant alter any cluster to radpcs;

grant alter any dimension to radpcs;

grant alter any index to radpcs;

grant alter any indextype to radpcs;

grant alter any library to radpcs;

grant alter any outline to radpcs;

grant alter any procedure to radpcs;

grant alter any role to radpcs;

grant alter any sequence to radpcs;

grant alter any snapshot to radpcs;

grant alter any table to radpcs;

grant alter any trigger to radpcs;

grant alter any type to radpcs;

grant alter database to radpcs;

grant alter profile to radpcs;

grant alter resource cost to radpcs;

grant alter rollback segment to radpcs;

grant alter session to radpcs;

grant alter system to radpcs;

grant alter tablespace to radpcs;

grant alter user to radpcs;

grant analyze any to radpcs;

grant audit any to radpcs;

grant audit system to radpcs;

grant backup any table to radpcs;

grant become user to radpcs;

grant comment any table to radpcs;

grant create any cluster to radpcs;

grant create any context to radpcs;

grant create any dimension to radpcs;

grant create any directory to radpcs;

grant create any index to radpcs;

grant create any indextype to radpcs;

grant create any library to radpcs;

grant create any operator to radpcs;

grant create any outline to radpcs;

grant create any procedure to radpcs;

grant create any sequence to radpcs;

grant create any snapshot to radpcs;

grant create any synonym to radpcs;

grant create any table to radpcs;

grant create any trigger to radpcs;

grant create any type to radpcs;

grant create any view to radpcs;

grant create cluster to radpcs;

grant create database link to radpcs;

grant create dimension to radpcs;

grant create indextype to radpcs;

grant create library to radpcs;

grant create operator to radpcs;

grant create procedure to radpcs;

grant create profile to radpcs;

grant create public database link to radpcs;

grant create public synonym to radpcs;

grant create role to radpcs;

grant create rollback segment to radpcs;

grant create sequence to radpcs;

grant create session to radpcs;

grant create snapshot to radpcs;

grant create synonym to radpcs;

grant create table to radpcs;

grant create tablespace to radpcs;

grant create trigger to radpcs;

grant create type to radpcs;

grant create user to radpcs;

grant create view to radpcs;

grant debug any procedure to radpcs;

grant debug connect session to radpcs;

grant delete any table to radpcs;

grant drop any cluster to radpcs;

grant drop any context to radpcs;

grant drop any dimension to radpcs;

grant drop any directory to radpcs;

grant drop any index to radpcs;

grant drop any indextype to radpcs;

grant drop any library to radpcs;

grant drop any operator to radpcs;

grant drop any outline to radpcs;

grant drop any procedure to radpcs;

grant drop any role to radpcs;

grant drop any sequence to radpcs;

grant drop any snapshot to radpcs;

grant drop any synonym to radpcs;

grant drop any table to radpcs;

grant drop any trigger to radpcs;

grant drop any type to radpcs;

grant drop any view to radpcs;

grant drop profile to radpcs;

grant drop public database link to radpcs;

grant drop public synonym to radpcs;

grant drop rollback segment to radpcs;

grant drop tablespace to radpcs;

grant drop user to radpcs;

grant execute any indextype to radpcs;

grant execute any library to radpcs;

grant execute any operator to radpcs;

grant execute any procedure to radpcs;

grant execute any type to radpcs;

grant flashback any table to radpcs;

grant force any transaction to radpcs;

grant force transaction to radpcs;

grant global query rewrite to radpcs;

grant grant any object privilege to radpcs;

grant grant any privilege to radpcs;

grant grant any role to radpcs;

grant insert any table to radpcs;

grant lock any table to radpcs;

grant manage tablespace to radpcs;

grant on commit refresh to radpcs;

grant query rewrite to radpcs;

grant restricted session to radpcs;

grant resumable to radpcs;

grant select any sequence to radpcs;

grant select any table to radpcs;

grant under any table to radpcs;

grant under any type to radpcs;

grant under any view to radpcs;

grant unlimited tablespace to radpcs;

grant update any table to radpcs;

grant select on dba_free_space to radpcs;

grant select on dba_data_files to radpcs;

4.在sqlplus下創(chuàng)建Directory

命令:createdirectory oracleDB as 'D:\OracleDB';

5.把讀寫權(quán)限授予特定用戶

命令:Grantread,write on directory oracleDB to radpcs;

6.在dos窗口執(zhí)行impdp導入命令

命令:impdp directory=oracleDB dumpfile=20150226.dmp logfile=20150226.log;

漫長的等待后,dos窗口會提示導出完成。如果導入過程出錯,會提示錯誤信息(只要數(shù)據(jù)完整,一些錯誤可以忽略)。

更多信息請查看IT技術(shù)專欄

更多信息請查看數(shù)據(jù)庫
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復僅供參考,敬請考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇剩?/div>

2026上岸·考公考編培訓報班

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務許可證:(云)人服證字(2023)第0102001523號
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號:hfpxwx
咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)
中文字幕免费精品_亚洲视频自拍_亚洲综合国产激情另类一区_色综合咪咪久久
欧美精品日韩| 性做久久久久久| 免费日韩av电影| 亚洲精品日韩欧美| 国产伦理一区| 久久久噜噜噜久久中文字免| 亚洲色图综合久久| 狠狠网亚洲精品| 国产曰批免费观看久久久| 亚洲天堂网在线观看| 国产精品久久久久久久免费软件| 亚洲已满18点击进入久久| 最近中文字幕mv在线一区二区三区四区| 欧美日韩国产一区二区三区| 久久手机精品视频| 午夜欧美精品久久久久久久| 亚洲日本成人女熟在线观看| 伊大人香蕉综合8在线视| 国产精品视频免费观看www| 欧美久久99| 蜜桃久久av一区| 欧美中文在线视频| 性色一区二区三区| 亚洲欧洲99久久| 亚洲欧美中日韩| 99综合在线| 亚洲一区中文字幕在线观看| 亚洲小视频在线观看| 亚洲乱码国产乱码精品精| 最新成人在线| 在线视频日韩精品| 国产啪精品视频| 美腿丝袜亚洲色图| 久久九九全国免费精品观看| 久久er99精品| 亚洲免费视频成人| 亚洲一区日韩在线| 先锋影音久久| 久久免费精品视频| 欧美经典一区二区| 欧美日韩亚洲一区二区三区| 欧美日韩妖精视频| 欧美调教vk| 国内精品久久久久影院优| 亚洲成人自拍视频| 一区二区国产精品| 欧美怡红院视频| 欧美电影专区| 国产精品久久国产三级国电话系列| 国产欧美精品xxxx另类| 国产欧美日韩在线播放| 国产精品网站一区| 亚洲精品在线二区| 欧美一区二区大片| 欧美国产先锋| 国产日韩综合| 在线亚洲欧美视频| 91久久精品一区二区别| 亚洲午夜av| 欧美aa在线视频| 国产欧美日韩视频在线观看| 亚洲精品一区二区三区福利| 香蕉成人伊视频在线观看 | 亚洲天堂黄色| 葵司免费一区二区三区四区五区| 欧美午夜精品一区二区三区| 亚洲国产精品视频| 久久精品人人做人人爽| 欧美成人有码| 1024成人| 欧美99在线视频观看| 好看不卡的中文字幕| 小黄鸭精品aⅴ导航网站入口| 美女主播一区| 国产人成精品一区二区三| 好吊视频一区二区三区四区 | 亚洲欧美一区二区视频| 欧美日韩精品是欧美日韩精品| 国产精品久久久久久久一区探花 | 国产日产精品一区二区三区四区的观看方式 | 91久久极品少妇xxxxⅹ软件| 一区二区三区日韩欧美| 久久亚洲一区二区| 国产精品99久久99久久久二8| 免费人成精品欧美精品| 亚洲福利在线视频| 免费中文日韩| 亚洲伦伦在线| 国产精品毛片一区二区三区 | 亚洲精品在线视频| 欧美激情一区二区在线| 亚洲一区二区三区在线看| 亚洲在线黄色| 国产视频丨精品|在线观看| 欧美一区二区三区视频在线| 国产三区精品| 久久免费视频在线观看| 亚洲精品视频一区二区三区| 欧美人在线观看| 午夜精品婷婷| 一区二区三区在线免费观看| 免费观看成人鲁鲁鲁鲁鲁视频 | 久久久777| 亚洲电影免费观看高清完整版在线| 免费在线成人| 中文av一区特黄| 国内精品久久久久影院色| 欧美激情国产精品| 亚洲午夜一区二区| 在线观看欧美日韩| 国产精品盗摄一区二区三区| 久久国产手机看片| 亚洲乱码精品一二三四区日韩在线| 国产精品久久毛片a| 欧美不卡一区| 久久不射2019中文字幕| 在线看片成人| 欧美成人一区在线| 欧美一区在线直播| 欧美视频国产精品| 乱中年女人伦av一区二区| 亚洲在线视频免费观看| 国产一区在线观看视频| 国产精品久久久久秋霞鲁丝 | 亚洲一区二区三区免费在线观看| 狠狠狠色丁香婷婷综合久久五月| 国产精品久久久久久亚洲调教| 欧美另类视频在线| 免费观看成人www动漫视频| 久久精品99无色码中文字幕| 亚洲欧美国内爽妇网| 中国成人亚色综合网站| avtt综合网| 一本久道久久综合狠狠爱| 亚洲人成人一区二区在线观看| 在线观看成人av| 亚洲国产精品va在线看黑人| 国产综合网站| 在线观看91精品国产入口| 狠狠色综合播放一区二区| 国产有码一区二区| 亚洲人成人一区二区三区| 国产精品伦理| 欧美三级在线播放| 国产精品羞羞答答| 国产香蕉久久精品综合网| 国语对白精品一区二区| 黄色精品一二区| 国内伊人久久久久久网站视频| 国产视频在线观看一区二区三区| 韩国三级电影久久久久久| 亚洲高清在线视频| 亚洲精品一区二区三区樱花 | 99re66热这里只有精品3直播| 亚洲免费高清视频| 先锋a资源在线看亚洲| 亚洲欧美日韩在线高清直播| 夜夜嗨av一区二区三区免费区| 国产一区二区三区最好精华液 | 韩国成人精品a∨在线观看| 国产精品劲爆视频| 国产婷婷色一区二区三区四区| 国产亚洲激情| 国产一区在线视频| 国产欧美一区二区在线观看| 国产亚洲精品激情久久| 亚洲高清资源| 尤物yw午夜国产精品视频| 欧美天天在线| 欧美国产一区视频在线观看| 欧美成人一区二免费视频软件| 欧美手机在线| 国产在线高清精品| 亚洲看片一区| 99精品免费| 一区二区高清在线| 久久亚裔精品欧美| 欧美日韩亚洲国产一区| 欧美视频手机在线| 在线视频成人| 欧美精品一区视频| 欧美视频一区二区三区四区| 国产日韩精品一区| 亚洲一区高清| 欧美天堂亚洲电影院在线播放| 亚洲国语精品自产拍在线观看| 性高湖久久久久久久久| 久久综合狠狠综合久久综合88 | 亚洲美女视频网| 美女主播一区| 狠狠久久五月精品中文字幕| 亚洲免费视频在线观看| 国产精品国产三级国产专播精品人 | 欧美大成色www永久网站婷| 国产日韩精品在线观看| 亚洲在线一区二区| 国产精品久久久免费| 亚洲一区二区不卡免费| 欧美视频亚洲视频| 亚洲女人天堂成人av在线|