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

Oracle導入導出提示EXP-0006:出現內部不一致的錯誤解決辦法
來源:易賢網 閱讀:1036 次 日期:2015-03-18 10:37:19
溫馨提示:易賢網小編為您整理了“Oracle導入導出提示EXP-0006:出現內部不一致的錯誤解決辦法”,方便廣大網友查閱!

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

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

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

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

3.數據泵功能強大并行、過濾、轉換、壓縮、加密、交互等等;

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

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

有了理論支持,下面開始實戰。

expdp導出Oracle數據庫

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

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

2.把讀寫權限授予特定用戶

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

3.在dos窗口執行expdp導出命令

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

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

impdp導入Oracle數據庫

1.以sysdba級別登錄Oracle數據庫

命令:--sqlplus /nolog

--conn as sysdba

2.創建數據表空間

命令:

--創建數據表空間

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;

--創建索引表空間

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;

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

3.創建用戶、對用戶授權

--創建用戶

create user radpcs identified by ictradpcs

default tablespace radpcs_data

quota unlimited on radpcs_data

quota unlimited on radpcs_indx;

--授權

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下創建Directory

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

5.把讀寫權限授予特定用戶

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

6.在dos窗口執行impdp導入命令

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

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

更多信息請查看IT技術專欄

更多信息請查看網絡編程
由于各方面情況的不斷調整與變化,易賢網提供的所有考試信息和咨詢回復僅供參考,敬請考生以權威部門公布的正式信息和咨詢為準!

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

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關于我們 | 聯系我們 | 人才招聘 | 網站聲明 | 網站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機站點 | 投訴建議
工業和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網安備53010202001879號 人力資源服務許可證:(云)人服證字(2023)第0102001523號
云南網警備案專用圖標
聯系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關注公眾號:hfpxwx
咨詢QQ:1093837350(9:00—18:00)版權所有:易賢網
云南網警報警專用圖標
中文字幕免费精品_亚洲视频自拍_亚洲综合国产激情另类一区_色综合咪咪久久
欧美高清视频在线观看| 久久久高清一区二区三区| 国产精品va| 国产日本欧美一区二区| 在线观看视频一区二区| 亚洲精品少妇| 久久久久久久高潮| 欧美激情a∨在线视频播放| 国产精品亚洲一区| 亚洲精品一级| 玖玖精品视频| 国产精品素人视频| 亚洲精品综合精品自拍| 久久不射中文字幕| 欧美日韩国产色站一区二区三区| 国产一区二区三区在线播放免费观看| 夜夜精品视频一区二区| 久久综合久久久| 国产精品女主播在线观看| 亚洲高清av| 久久中文字幕导航| 激情欧美国产欧美| 久久久亚洲国产天美传媒修理工| 国产日本精品| 欧美专区在线观看| 国产一区二区三区丝袜| 午夜一区不卡| 国产婷婷成人久久av免费高清| 亚洲午夜精品一区二区| 国产精品jvid在线观看蜜臀| 一区二区日韩免费看| 欧美高清视频在线| 亚洲日本视频| 欧美日韩国产探花| 一区二区三区四区五区在线 | 欧美乱人伦中文字幕在线| 国内一区二区在线视频观看 | 一区二区在线不卡| 久久国产精品99国产精| 国产亚洲欧美一区二区三区| 欧美一区激情视频在线观看| 黑人巨大精品欧美一区二区小视频| 久久都是精品| 亚洲福利视频专区| 欧美日韩精品免费观看视频完整| 亚洲精品久久| 欧美图区在线视频| 欧美亚洲综合另类| 樱桃国产成人精品视频| 蜜臀99久久精品久久久久久软件| 亚洲精品少妇30p| 国产精品乱码妇女bbbb| 香蕉成人啪国产精品视频综合网| 国产免费观看久久| 蜜桃av一区二区| 一区二区日韩| 国内精品**久久毛片app| 免费高清在线一区| 一区二区三区欧美激情| 国产日产亚洲精品系列| 欧美成人一品| 欧美怡红院视频| 亚洲三级免费观看| 国产精品一区二区三区四区| 久久一区二区三区av| 亚洲图片在区色| 尤物精品国产第一福利三区 | 在线一区二区三区四区| 国产精品资源在线观看| 免费欧美日韩| 午夜精品影院| 91久久久久久国产精品| 国产精品色婷婷| 欧美福利在线| 久久欧美中文字幕| 午夜久久资源| 亚洲视频在线观看免费| 亚洲国产成人精品久久久国产成人一区| 欧美视频不卡| 欧美激情亚洲视频| 久久久久久久成人| 午夜精品久久久久久久99水蜜桃| 亚洲高清在线观看一区| 国产婷婷精品| 国产精品毛片一区二区三区| 欧美精品自拍| 免费一级欧美片在线播放| 久久国产高清| 欧美影片第一页| 午夜精品福利视频| 亚洲一二区在线| 中日韩视频在线观看| 亚洲美女电影在线| 最新日韩中文字幕| 亚洲第一精品久久忘忧草社区| 国产欧美另类| 国产农村妇女精品一区二区| 国产精品三级久久久久久电影| 欧美午夜在线一二页| 欧美三级特黄| 欧美午夜一区二区| 欧美日韩在线视频一区| 欧美精品一区二区三| 欧美 日韩 国产在线| 老司机午夜精品视频| 久久久精品一品道一区| 久久一二三区| 欧美伦理91i| 国产精品久久激情| 国产精品一区二区三区久久久 | 麻豆精品在线视频| 久久一二三国产| 免费中文日韩| 欧美日韩激情小视频| 欧美视频在线观看视频极品| 欧美全黄视频| 国产精品美女www爽爽爽视频 | 亚洲欧美日本另类| 亚洲欧美日韩一区二区三区在线| 香蕉久久国产| 久久久久久久久蜜桃| 另类亚洲自拍| 欧美日韩91| 国产欧美一区二区精品仙草咪| 国产在线视频欧美| 亚洲毛片视频| 午夜精品福利一区二区三区av | 亚洲神马久久| 午夜免费在线观看精品视频| 久久成人精品一区二区三区| 另类av一区二区| 欧美日韩精品不卡| 国产亚洲免费的视频看| 亚洲国产99精品国自产| 亚洲桃花岛网站| 免费在线亚洲| 国产麻豆视频精品| 亚洲欧洲一级| 久久久久国产精品www| 欧美激情中文字幕乱码免费| 国产伦精品一区二区三区免费迷| 影音先锋另类| 亚洲欧美日韩在线播放| 欧美高清你懂得| 国内视频一区| 亚洲主播在线播放| 欧美久久99| 精品不卡在线| 香蕉久久夜色精品国产| 欧美啪啪成人vr| 一区二区三区在线免费视频| 亚洲一区二区三区在线观看视频 | 久久精品二区| 欧美视频中文字幕| 亚洲区国产区| 久久婷婷色综合| 国产欧美三级| 亚洲综合色在线| 欧美性感一类影片在线播放| 伊人成人在线视频| 久久精品国产亚洲精品 | 欧美一级视频| 国产精品黄色| 一区二区三区欧美在线| 欧美高清在线视频观看不卡| 国产综合香蕉五月婷在线| 亚洲男女自偷自拍| 欧美视频一区在线观看| 亚洲精品在线一区二区| 免费观看成人| 亚洲精品国产精品国产自| 玖玖精品视频| 国内自拍一区| 久久久久久久999| 在线观看成人网| 麻豆精品视频在线观看| 亚洲电影在线免费观看| 另类人畜视频在线| 亚洲黄色免费电影| 欧美理论视频| 宅男在线国产精品| 国产精品扒开腿做爽爽爽视频| 一区二区三区久久| 国产精品久久久久久久第一福利 | 尤物九九久久国产精品的分类| 亚洲欧美影院| 国产综合亚洲精品一区二| 久久久久亚洲综合| 亚洲国产精品va在线看黑人| 女主播福利一区| 91久久精品美女| 欧美精品一区二区三区久久久竹菊| 亚洲第一免费播放区| 欧美伦理a级免费电影| 亚洲性感美女99在线| 国产欧美日韩精品a在线观看| 欧美一区二区三区婷婷月色| 加勒比av一区二区| 欧美日韩国产首页| 欧美伊人久久大香线蕉综合69|