Hi experienced a weird behavior in expdp
here's my situation :
SQL>conn / as sysdba
SQL>CREATE USER myuser
IDENTIFIED BY myuser
DEFAULT TABLESPACE EXAMPLE
TEMPORARY TABLESPACE TEMP
PROFILE DEFAULT
ACCOUNT UNLOCK;
GRANT CONNECT TO myuser;
GRANT CREATE SESSION TO myuser.
GRANT EXP_FULL_DATABASE TO myuser;
GRANT READ, WRITE ON DIRECTORY DATA_PUMP_DIR TO myuser;
ALTER USER myuser QUOTA UNLIMITED ON EXAMPLE;
on
$ expdp myuser/myuser full=Y directory=DATA_PUMP_DIR dumpfile=FULL.dmp logfile=EXPDPFULL.log
Export: Release 11.2.0.4.0 - Production on Thu May 19 19:17:45 2016
Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
ORA-31631: privileges are required
ORA-39161: Full database jobs require privileges
Thank you for help.