ERROR- ORA-00060: deadlock detected while waiting for resource

前端 未结 1 1885
终归单人心
终归单人心 2021-01-28 23:34

I got this error when running a procedure I would like to know if it is possible to see the trace file on the server about the details

相关标签:
1条回答
  • 2021-01-29 00:05

    You can find such informations in the alert<your_sid>.log file. By <your_sid>, i mean the value when you issue $ echo $ORACLE_SID ( mostly set as this ).

    It's under $ORACLE_BASE/diag/rdbms/<your_sid>/<your_sid>/trace path location.

    You may also see the value for base path by issuing

    $ echo $ORACLE_BASE( or alternatively, you would keep under $ORACLE_HOME directory, instead ).

    You can also query

    gv$diag_info performance view ( g stands whether you have a RAC instance ) to see the path.

    0 讨论(0)
提交回复
热议问题