Hi,
I'm trying to recover a database by importing a full export dump. This does not work as I wish.
The import complains and says that "......already exists". This applies for tables, trigger and other db objects.
What am I doing wrong?
Thanks,
yooda
I'm trying to recover a database by importing a full export dump. This does not work as I wish.
Code:
My procedure for doing this is:
1. Create dump directory "dmp_dir" in SQLPLUS
2. Export the database using:
expdp user/passwd@dbname full=yes directory=dmp_dir dumpfile=dmp.dmp logfile=exp_log.log
3. Delete the database from the DBCA
4. Create a new in the DBCA based on the "General Purpose" template
6. Start the dbconsole with:
emctl start dbconsole
7. Create dump directory "dmp_dir" in SQLPLUS
8. Full import of dmp.dmp with:
impdp user/passwd@dbname full=yes directory=dump_dir dumpfile=dmp.dmp logfile=inp_log.log
What am I doing wrong?
Thanks,
yooda