What is the quickest way to recover the contents of the OCA.EXAM_RESULTS table to the OCP schema?

You executed a DROP USER CASCADE on an Oracle 11g release 1 database and
immediately realized that you forgot to copy the OCA.EXAM_RESULTS table to the OCP
schema. The RECYCLE_BIN enabled before the DROP USER was executed and the OCP
user has been granted the FLASHBACK ANY TABLE system privilege. What is the quickest
way to recover the contents of the OCA.EXAM_RESULTS table to the OCP schema?

You executed a DROP USER CASCADE on an Oracle 11g release 1 database and
immediately realized that you forgot to copy the OCA.EXAM_RESULTS table to the OCP
schema. The RECYCLE_BIN enabled before the DROP USER was executed and the OCP
user has been granted the FLASHBACK ANY TABLE system privilege. What is the quickest
way to recover the contents of the OCA.EXAM_RESULTS table to the OCP schema?

A.
Execute FLASHBACK TABLE OCA.EXAM_RESULTS TO BEFORE DROP RENAME TO
OCP.EXAM_RESULTS; connected as SYSTEM.

B.
Execute FLASHBACK TABLE OCA.EXAM_RESULTS TO BEFORE DROP RENAME TO
EXAM_RESULTS; connected as the OCP user.

C.
Recovery the table using Database Point In Time Recovery.

D.
Recover the table using traditional Tablespace Point In Time Recovery.

E.
Recover the table using Automated Tablespace Point In Time Recovery.



Leave a Reply 5

Your email address will not be published. Required fields are marked *


Rajeev

Rajeev

I think B is the right Answer

MPC

MPC

RMAN tablespace point-in-time recovery (TSPITR).
You want to recover a table after it has been dropped with the PURGE option.

kroll

kroll

After dropping the user objects do not go to recyclebin.
Answer E.

rodge

rodge

Since differing opinions and no documentation to back up any, Kroll is correct:

https://docs.oracle.com/cd/B28359_01/server.111/b28310/tables011.htm

“When you drop a user, any objects belonging to the user are not placed in the recycle bin and any objects in the recycle bin are purged.”

Flashback is not usable and object must be recovered. So E is correct