Which is the correct order of these steps in this case?

Your ARCHIVELOG mode database has lost three datafiles and shut down. One is assigned
to the SYSTEM tablespace and two are assigned to the USERS tablespace. You can
choose from the following steps to recover your database:
a: Restore the three database datafiles that were lost.
b: Issue the Startup Mount command to mount the database.
c: Issue the alter database open command.
d: Issue the alter database open resetlogs command.
e: Recover the database using the recover database command.
f: Recover the datafiles with the recover datafile command.
g: Take the datafiles offline.
Which is the correct order of these steps in this case?

Your ARCHIVELOG mode database has lost three datafiles and shut down. One is assigned
to the SYSTEM tablespace and two are assigned to the USERS tablespace. You can
choose from the following steps to recover your database:
a: Restore the three database datafiles that were lost.
b: Issue the Startup Mount command to mount the database.
c: Issue the alter database open command.
d: Issue the alter database open resetlogs command.
e: Recover the database using the recover database command.
f: Recover the datafiles with the recover datafile command.
g: Take the datafiles offline.
Which is the correct order of these steps in this case?

A.
a, b, e, c

B.
b, e, d

C.
a, b, d, c

D.
b, g, c, f

E.
a, b, d, f

Explanation:
Because the system critical data files is damaged, so that the RESETLOGS option is not
applied. four steps to recover the system critical data (SYSTEM tablespace or the
tablespace with UNDO):
1. SHUTDOWN ABORT, if the instance is started.
2. MOUNT the instance
3. restore and recover the damaged data files;
4. OPEN the database



Leave a Reply 4

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


Baris Coskun

Baris Coskun

The question is totally terrible it is not depend on answer A.

MJ

MJ

None of the presented answers match the explanation. Bad question. The last 3 letters should be b, a, c if the explanation is correct.

DD

DD

correct answer:b,a,f,c

Eamon

Eamon

Answer is A. (a, b, e, c) here is why ….

SHUTDOWN ABORT is not necessary as a critical datafile was damaged, which always results in a crashed database.

So the steps would go something like …
1. RESTORE DATAFILE…
2. STARTUP MOUNT
3. RECOVER DATABASE…(or use individual RECOVER DATAFILE… commands for each datafile)
4. ALTER DATABASE OPEN

Steps 1 and 2 can in fact be done in reverse order.

I think then a process of elimination gets rid of the other “wrong answers”

B does not use a RESTORE
C you cant do an OPEN before a RECOVER
D there is no point in taking a datafile OFFLINE when the database is in MOUNT mode
E you cant do an OPEN before a RECOVER