InterviewSolution
| 1. |
Can You See The Progress Of A Flashback Database Operation? |
|
Answer» YES, you can. During a FLASHBACK DATABASE operation you can query V$SESSION_LONGOPS from another session to see the progress of the flashback. The FLASHBACK DATABASE operation has two distinct phases: the actual flashback and the media recovery that happens afterwards to bring the database to a consistent state. While the actual flashback is running you’ll see the following message in V$SESSION_LONGOPS, on Oracle 11gR2: Flashback Database: Flashback Data Applied : 238 out of 282 Megabytes DONE During the media recovery, the following messages will be seen:
Yes, you can. During a FLASHBACK DATABASE operation you can query V$SESSION_LONGOPS from another session to see the progress of the flashback. The FLASHBACK DATABASE operation has two distinct phases: the actual flashback and the media recovery that happens afterwards to bring the database to a consistent state. While the actual flashback is running you’ll see the following message in V$SESSION_LONGOPS, on Oracle 11gR2: Flashback Database: Flashback Data Applied : 238 out of 282 Megabytes done During the media recovery, the following messages will be seen: |
|