Where can I find a complete list of predefined Oracle pl/SQL Exceptions?

前端 未结 4 2068
情歌与酒
情歌与酒 2021-01-31 09:52

Where can I find a full list of all predefined Oracle pl/SQL Exceptions?

In this link i found this list, are there anymore?

ACCESS_INTO_NULL    ORA-06530         


        
4条回答
  •  长发绾君心
    2021-01-31 10:29

    Predefined exceptions are declared in package SYS.STANDARD, there you'll surely find them all.

    On my 9.2.0.7 I found one not in the list:

    USERENV_COMMITSCN_ERROR exception;
    pragma EXCEPTION_INIT(USERENV_COMMITSCN_ERROR, '-1725');
    

提交回复
热议问题