ORA-00104: deadlock detected; all public servers blocked waiting for resources

文档解释

ORA-00104: deadlock detected; all public servers blocked waiting for resources

Cause: All available public servers are servicing requests that require resources locked by a client which is unable to get a public server to release the resources.

Action: Increase the limit for the system parameter MAX_SHARED_SERVERS as the system will automaticaly start up new servers to break the deadlock until the number of servers reaches the value specified in MAX_SHARED_SERVERS.

官方解释

ORA-00104 is an informational message indicating that the database encountered an unexpected end of file when reading from a file.

ORA-00104是一个信息提示,表明数据库在从文件中读取时遇到意外的文件结束。

常见案例

ORA-00104通常发生在用户使用sqlplus时或创建诸如pl/sql,触发器,函数等一般性对象时。

正常处理方法及步骤

1.查看文件中是否存在字符串“ALTER SESSION”,如果是,则删除;

2.如果是普通对象则查看文件中是否存在字符串””/””,如果是,则修改为“;”;

3.重新编译对象。

你可能感兴趣的