You need to recover a database running In NOARCHIVELOG mode. Which two statements are true in this scenario?
You can perform complete recovery by using the command:
RESTORE DATABASE
FROM TAG“consistent_whole_backup”;
RECOVER DATABASE;
You can perform incomplete recovery by using the command:
RESTORE DATABASE;
FROM TAG "consistent_whole_backup";
RECOVER DATABASE NOREDO;
Only consistent backups can be used for restoring a database in NOARCHIVELOG mode.
Media recovery is possible in most cases.
Submit