错误 - ORA-00060:等待资源时检测到死锁
ERROR- ORA-00060: deadlock detected while waiting for resource
我在 运行 一个程序时遇到了这个错误
我想知道是否可以在服务器上看到跟踪文件
关于详情
您可以在 alert<your_sid>.log
文件中找到此类信息。
<your_sid>
,我指的是你发出 $ echo $ORACLE_SID
时的值(主要设置为这个)。
它在 $ORACLE_BASE/diag/rdbms/<your_sid>/<your_sid>/trace
路径位置下。
您还可以通过发出
查看 base 路径的值
$ echo $ORACLE_BASE
( or alternatively, you would keep under
$ORACLE_HOME
directory, instead ).
您也可以查询
g
v$diag_info
performance view ( g
stands whether you have a RAC
instance ) to see the path.
我在 运行 一个程序时遇到了这个错误 我想知道是否可以在服务器上看到跟踪文件 关于详情
您可以在 alert<your_sid>.log
文件中找到此类信息。
<your_sid>
,我指的是你发出 $ echo $ORACLE_SID
时的值(主要设置为这个)。
它在 $ORACLE_BASE/diag/rdbms/<your_sid>/<your_sid>/trace
路径位置下。
您还可以通过发出
查看 base 路径的值
$ echo $ORACLE_BASE
( or alternatively, you would keep under$ORACLE_HOME
directory, instead ).
您也可以查询
g
v$diag_info performance view (g
stands whether you have aRAC
instance ) to see the path.