ORA-00060: deadlock detected while waiting for resource

后端 未结 4 2087
误落风尘
误落风尘 2021-02-01 17:40

I have a series of scripts running in parallel as a nohup on an AIX server hosting oracle 10g. These scripts are written by somebody else and are meant to be executed concurrent

4条回答
  •  余生分开走
    2021-02-01 18:09

    You can get deadlocks on more than just row locks, e.g. see this. The scripts may be competing for other resources, such as index blocks.

    I've gotten around this in the past by engineering the parallelism in such a way that different instances are working on portions of the workload that are less likely to affect blocks that are close to each other; for example, for an update of a large table, instead of setting up the parallel slaves using something like MOD(n,10), I'd use TRUNC(n/10) which mean that each slave worked on a contiguous set of data.

    There are, of course, much better ways of splitting up a job for parallelism, e.g. DBMS_PARALLEL_EXECUTE.

    Not sure why you're getting "PL/SQL successfully completed", perhaps your scripts are handling the exception?

提交回复
热议问题