Issue:
I got the below error while doing the export of few tables.
. exported "admin"."REG_CONFIG" 6.507 KB 1 rows
. . exported "admin"."TEST_TO_UPLOAD" 5.156 KB 3 rows
ORA-39181: Only partial table data may be exported due to fine grain access control on "admin"."fiel_TAB"
Root cause:
Looks like fine grained access policy has been enabled on those tables and need to granted the access .
Solution:
select * from dba_policies where OBJECT_OWNER='ADMIN' AND OBEJCT_NAME='FIEL_TAB';
grant EXEMPT ACCESS POLICY to ADMIN;