Oracle Error ORA-06512

后端 未结 3 746
你的背包
你的背包 2021-01-03 00:07

Just can\'t figure out why it gives me ORA-06512 Error

PROCEDURE PX(pNum INT,pIdM INT,pCv VARCHAR2,pSup FLOAT)
AS
    vSOME_EX EXCEPTION;

BEGIN 
    IF ((pN         


        
3条回答
  •  春和景丽
    2021-01-03 01:02

    I also had the same error. In my case reason was I have created a update trigger on a table and under that trigger I am again updating the same table. And when I have removed the update statement from the trigger my problem has been resolved.

提交回复
热议问题