InterviewSolution
Saved Bookmarks
| 1. |
If You Didn’t Have Access To The Standby Database And You Wanted To Find Out What Error Has Occurred In A Data Guard Configuration, What View Would You Check In The Primary Database To Check The Error Message? |
|
Answer» You can CHECK the V$dataguard_status VIEW. SELECT MESSAGE from v$dataguard_status; You can check the v$dataguard_status view. select message from v$dataguard_status; |
|