try:
 commit transaction

解决方案 »

  1.   

    ORA-03127 no new operations allowed until the active operation endsCause: An attempt was made to execute a new operation before the active non-blocking operation completed or a new operation was attempted before all the pieces of a column were inserted or fetched.Action: Execute the new operation after the non-blocking operation completes. If piecewise binds/defines were done, execute the new operation after all the pieces have been inserted or fetched.
      

  2.   

    我说一下自己的看法
    我认为是你得后台有问题
    如果是在Unix/Linux 上运行的话
    请PS一下(process status)
    看一下进程的状态
    是不是有个后台的procedure 或者 Cursor 在访问数据库的时候做了个死循环
    造成的
      

  3.   

    no new operations allowed until the active operation ends不能够进行新的操作直到当前的操作终止
      

  4.   

    出现错误后,重启EASERVER又好了,这个问题偶尔发生,不过好麻烦,数据库是装在linux下面。
      

  5.   

    如果你的sql没有作commit动作,有可能被lock住,可能应用程序没有做到transaction机制。
      

  6.   

    我用pb + easerver + oracle,这个错误偶然出现,错误出现后,重启easerver就好了,不过用段时间又出现问题,不知道是事务提交的问题还是进程阻塞的问题?