메타링크 문서 참조
ORA-39181:Only Partial Table Data Exported Due To Fine Grain Access Control (문서 ID 422480.1)
ERROR:
ORA-39181 :only partial table data may be exported due to fine grain access control
This error appears trying to datapump export a table with FGAC policy enabled against it.
When Expdp runs as the schema owner, if fine grained policies are discovered on tables and if the exporting user has unrestricted access, then the entire table data is exported.
CHANGES
A table with FGAC policy enabled against it.
Scenario 1 (unprivileged user)
------------------------------
table: ABC_TAB
partition=yes
table_owner= X_USER
data= 500GB
when expdp X_USER/password parameter=exp_ABC_TAB.par
==>
Getting ORA-39181: Only partial table data may be exported due to fine grain access control
Scenario 2 (privileged user)
-----------------------------
table: ABC_TAB
partition=yes
table_owner= X_USER
when expdp oradba/password parameter=exp_ABC_TAB.par
==>
Getting exported "X_USER"."ABC_TAB":"ABC_TAB_AA"12340 KB 1000 rows
Master table "ORADBA"."ABC_TAB_AA" successfully loaded/unloaded
CAUSE
This is expected behavior.
ORA-39181 is caused by an unprivileged user who tries to export a table with a fine grain access control policiy applied. The table owner is subject to access control and may not be able to export all rows in the table. Only the rows that can be seen by that user are exported. In order to preserve integrity of the table, the user importing the table should have enough privilege to recreate the table with the security policies at import time.
Action: It is strongly recommended that the database administrator handles the export of this table.
This as an informational message.
VPD and Oracle Label Security are not enforced during DIRECT path export and similarly, database users granted the EXEMPT ACCESS POLICY privilege, either directly or through a database role, are exempt from VPD enforcements. However, the following policy enforcement options remain in effect even when EXEMPT ACCESS POLICY is granted:
* INSERT_CONTROL, UPDATE_CONTROL, DELETE_CONTROL, WRITE_CONTROL, LABEL_UPDATE, and LABEL_DEFAULT
EXEMPT ACCESS POLICY is a strong privilege and must be granted with care. For example , grant it to the role exp_full_database role as this role is granted to admin users only.
SOLUTION
To avoid this:
Grant the privilege EXEMPT ACCESS POLICY to the exporting user
-or-
Disable the VPD policy.
'ORACLE > TroubleShooting' 카테고리의 다른 글
오라클 ora-48913 (0) | 2018.12.31 |
---|---|
ORA-39125 expdp 중 오류 (0) | 2018.10.16 |
문서 1556879.1 AS SYSDBA로 접속시 ORA-1031 또는 ORA-1017에 대한 문제 접근 방법 (0) | 2016.10.19 |
aix 11.2.0.4 그리드 인스톨 fail _rootpre 실패 (0) | 2015.10.26 |
ORA-38029 : object statistics are locked (1) | 2015.05.12 |