I use the command exp parfile=/opt/p.par to export the database, the content of the p.par file is
userid=system/sys123
file=/opt/exp.dat
log=/opt/exp.log
compress=no
direct=y
full=y
rows=no
This is the error Log
About to export the entire database ...
. exporting tablespace definitions
. exporting profiles
. exporting user definitions
. exporting roles
. exporting resource costs
. exporting rollback segment definitions
. exporting database links
. exporting sequence numbers
. exporting directory aliases
. exporting context namespaces
. exporting foreign function library names
. exporting PUBLIC type synonyms
. exporting private type synonyms
. exporting object type definitions
. exporting system procedural objects and actions
. exporting pre-schema procedural objects and actions
. exporting cluster definitions
. about to export AUDSYS's tables via Direct Path ...
. about to export SYSTEM's tables via Direct Path ...
. . exporting table AQ$_KEY_SHARD_MAP
...
. about to export SYS$UMF's tables via Direct Path ...
. about to export MDDATA's tables via Direct Path ...
. exporting synonyms
. exporting views
. exporting referential integrity constraints
. exporting stored procedures
. exporting operators
. exporting indextypes
. exporting bitmap, functional and extensible indexes
. exporting posttables actions
. exporting triggers
. exporting materialized views
. exporting snapshot logs
. exporting job queues
. exporting refresh groups and children
. exporting dimensions
. exporting post-schema procedural objects and actions
EXP-00061: unable to find the outer table name of a nested table
EXP-00000: Export terminated unsuccessfully
I queried the meaning of EXP-00061 is
Error code: EXP-00061
Description: unable to find the outer table name of a nested table
Cause: While exporting a bitmap index or posttable action on an inner nested table, the name of the outer table could not be located, using the NTAB$ table.
Action: Verify the table is properly defined.
but this information is beyond my comprehension.
I tried to change full=y
to owner=system
, the export works fine. If it is a full database export, there will be an EXP-00061 error.
How can I avoid this problem please? (try not to use expdp)