|
最初由 warehouse 发布
[B]SQL> SELECT COUNT(*) FROM v$standby_log
2 ;
COUNT(*)
----------
0
SQL>
也没有记录! [/B]
I apologize. I meant v$dataguard_status, specifically, the last few rows (there's no way to do tail -f, so you need to add where timestamp > ..., or wrap the query with order by in another query with where rownum < ...)
Anyway, grassbell's suggestion of archiving current log is the most obvious one. We should never forget to try the easiest thing first.
Yong Huang |
|