...
If
oracleEphemeralSourceName
packager property is not specified we try to get the PDB name from 3 tables on the DB (v$pdbs
anddba_data_files, or v$parameter
). If you already gave the user required grants according to Multi-Schema Projects - Oracle Roles and Permissions , everything should work because bothGRANT SELECT ANY DICTIONARY TO DATICAL_ROLE;
andGRANT IMP_FULL_DATABASE TO DATICAL_PACKAGER_ROLE;
already give us enough permission to query the tables. If you haven’t given such permission to us and want to use the ephemeraldatabaseBackupRestoreMethod
- permissions to queryv$pdbs
and ,dba_data_files
andv$parameter
is available.
Use Oracle Managed Files (OMF) with Oracle Ephemeral Database
...