|
Yong Huang 发表于 2013-5-14 01:58 ![]()
I admit there's something here I don't fully understand. But in 11g, LGWR is a deprecated attribute ...
SQL> rem 在备库查询
SQL>
SQL> select pid from v$managed_standby where process='RFS';
PID
----------
3937
3932
3934
3930
SQL>
SQL> ho
[oracle@standby ~]$
[oracle@standby ~]$ netstat -anp | grep 3937 | grep ^tcp
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
tcp 0 0 192.168.0.52:1526 192.168.0.167:18380 ESTABLISHED 3937/oraclestandby
[oracle@standby ~]$
[oracle@standby ~]$ netstat -anp | grep 3932 | grep ^tcp
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
tcp 0 0 192.168.0.52:1526 192.168.0.167:18367 ESTABLISHED 3932/oraclestandby
[oracle@standby ~]$
[oracle@standby ~]$ netstat -anp | grep 3934 | grep ^tcp
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
tcp 0 0 192.168.0.52:1526 192.168.0.167:18368 ESTABLISHED 3934/oraclestandby
[oracle@standby ~]$
[oracle@standby ~]$ netstat -anp | grep 3930 | grep ^tcp
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
tcp 0 0 192.168.0.52:1526 192.168.0.167:18366 ESTABLISHED 3930/oraclestandby
[oracle@standby ~]$
SQL>
SQL> rem 在主库查询
SQL>
SQL> ho
[oracle@primary ~]$
[oracle@primary ~]$ netstat -anp | grep 18380
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
tcp 0 0 192.168.0.167:18380 192.168.0.52:1526 ESTABLISHED 3927/ora_arc2_prima
[oracle@primary ~]$
[oracle@primary ~]$ netstat -anp | grep 18367
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
tcp 0 0 192.168.0.167:18367 192.168.0.52:1526 ESTABLISHED 3929/ora_arc3_prima
[oracle@primary ~]$
[oracle@primary ~]$ netstat -anp | grep 18368
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
tcp 0 0 192.168.0.167:18368 192.168.0.52:1526 ESTABLISHED 3931/ora_nsa2_prima
[oracle@primary ~]$
[oracle@primary ~]$ netstat -anp | grep 18366
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
tcp 0 0 192.168.0.167:18366 192.168.0.52:1526 ESTABLISHED 3925/ora_arc1_prima
[oracle@primary ~]$
[oracle@primary ~]$
上述输出说明了什么问题呢?
|
|