expdp匯出報ORA-39181處理方法

來源:互聯網
上載者:User

expdp匯出報ORA-39181處理方法

【環境】資料庫版本:Oracle 11.2.0.3

【錯誤記錄檔】用system使用者進行資料庫的expdp操作的時候報錯了,詳細如下:

Starting "SYSTEM"."SYS_EXPORT_SCHEMA_01":  system/******** directory=dir dumpfile=full20151201.dmp schemas=ADM_JOHN

ORA-39181: Only partial table data may be exported due to fine grain access control on "ADM_JOHN"."TEST"

. . exported  "ADM_JOHN"."TEST"                  0 KB      0 rows

【問題原因】"ADM_JOHN"."TEST" 進行了存取控制,但是SYSTEM使用者沒有存取權限,所以無法進行匯出;

【解決方案一】許可權的問題都是可以通過授權解決的,對於一般的小企業DBA一般掌握著sys和system的許可權,所以對system使用者進行授權即可。

1、授權的語句: Grant    EXEMPT ACCESS POLICY to system;

【解決方案二】許可權的問題,用sys使用者也都是可以解決的;

expdp  \"sys/oracle as sysdba\"  directory=DIR  dumpfile=full20151201.dmp  schemas = ADM_JOHN;

總結:一般個人習慣都是喜歡用system使用者進行資料庫的匯入和匯出操作,所以在匯出的時候先對system進行授權。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.