设为首页 收藏本站
查看: 485|回复: 0

[经验分享] Oracle Predefined PL/SQL Exceptions 预定义异常

[复制链接]

尚未签到

发表于 2018-9-7 09:41:29 | 显示全部楼层 |阅读模式
Predefined PL/SQL Exceptions
  An internal exception is raised implicitly whenever your PL/SQL program violates an Oracle rule or exceeds a system-dependent limit. Every Oracle error has a number, but exceptions must be handled by name. So, PL/SQL predefines some common Oracle errors as exceptions. For example, PL/SQL raises the predefined exception NO_DATA_FOUNDif a SELECT INTO statement returns no rows.
  To handle other Oracle errors, you can use the OTHERS handler. The functions SQLCODE and SQLERRM are especially useful in the OTHERS handler because they return the Oracle error code and message text.>EXCEPTION_INIT to associate exception names with Oracle error codes.
  PL/SQL declares predefined exceptions globally in package STANDARD, which defines the PL/SQL environment. So, you need not declare them yourself. You can write handlers for predefined exceptions using the names in the following list:
ExceptionOracle ErrorSQLCODE Value  ACCESS_INTO_NULL
  ORA-06530
  -6530
  CASE_NOT_FOUND
  ORA-06592
  -6592
  COLLECTION_IS_NULL
  ORA-06531
  -6531
  CURSOR_ALREADY_OPEN
  ORA-06511
  -6511
  DUP_VAL_ON_INDEX
  ORA-00001
  -1
  INVALID_CURSOR
  ORA-01001
  -1001
  INVALID_NUMBER
  ORA-01722
  -1722
  LOGIN_DENIED
  ORA-01017
  -1017
  NO_DATA_FOUND
  ORA-01403
  +100
  NOT_LOGGED_ON
  ORA-01012
  -1012
  PROGRAM_ERROR
  ORA-06501
  -6501
  ROWTYPE_MISMATCH
  ORA-06504
  -6504
  SELF_IS_NULL
  ORA-30625
  -30625
  STORAGE_ERROR
  ORA-06500
  -6500
  SUBSCRIPT_BEYOND_COUNT
  ORA-06533
  -6533
  SUBSCRIPT_OUTSIDE_LIMIT
  ORA-06532
  -6532
  SYS_INVALID_ROWID
  ORA-01410
  -1410
  TIMEOUT_ON_RESOURCE
  ORA-00051
  -51
  TOO_MANY_ROWS
  ORA-01422
  -1422
  VALUE_ERROR
  ORA-06502
  -6502
  ZERO_DIVIDE
  ORA-01476
  -1476
  Brief descriptions of the predefined exceptions follow:
ExceptionRaised when ...  ACCESS_INTO_NULL
  Your program attempts to assign values to the attributes of an uninitialized (atomically null) object.
  CASE_NOT_FOUND
  None of the choices in the WHEN clauses of a CASE statement is selected, and there is no ELSE clause.
  COLLECTION_IS_NULL
  Your program attempts to apply collection methods other than EXISTS to an uninitialized (atomically null) nested table or varray, or the program attempts to assign values to the elements of an uninitialized nested table or varray.
  CURSOR_ALREADY_OPEN
  Your program attempts to open an already open cursor. A cursor must be closed before it can be reopened. A cursor FOR loop automatically opens the cursor to which it refers. So, your program cannot open that cursor inside the loop.
  DUP_VAL_ON_INDEX
  Your program attempts to store duplicate values in a database column that is constrained by a unique index.
  INVALID_CURSOR
  Your program attempts an illegal cursor operation such as closing an unopened cursor.
  INVALID_NUMBER
  In a SQL statement, the conversion of a character string into a number fails because the string does not represent a valid number. (In procedural statements, VALUE_ERROR is raised.) This exception is also raised when the LIMIT-clause expression in a bulk FETCH statement does not evaluate to a positive number.
  LOGIN_DENIED
  Your program attempts to log on to Oracle with an invalid username and/or password.
  NO_DATA_FOUND
  A SELECT INTO statement returns no rows, or your program references a deleted element in a nested table or an uninitialized element in an index-by table. SQL aggregate functions such as AVG and SUM always return a value or a null. So, a SELECT INTO statement that calls an aggregate function never raises NO_DATA_FOUND. The FETCH statement is expected to return no rows eventually, so when that happens, no exception is raised.
  NOT_LOGGED_ON
  Your program issues a database call without being connected to Oracle.
  PROGRAM_ERROR
  PL/SQL has an internal problem.
  ROWTYPE_MISMATCH
  The host cursor variable and PL/SQL cursor variable involved in an assignment have incompatible return types. For example, when an open host cursor variable is passed to a stored subprogram, the return types of the actual and formal parameters must be compatible.
  SELF_IS_NULL
  Your program attempts to call a MEMBER method on a null instance. That is, the built-in parameter SELF (which is always the first parameter passed to a MEMBER method) is null.
  STORAGE_ERROR
  PL/SQL runs out of memory or memory has been corrupted.
  SUBSCRIPT_BEYOND_COUNT
  Your program references a nested table or varray element using an index number larger than the number of elements in the collection.
  SUBSCRIPT_OUTSIDE_LIMIT
  Your program references a nested table or varray element using an index number (-1 for example) that is outside the legal range.
  SYS_INVALID_ROWID
  The conversion of a character string into a universal rowid fails because the character string does not represent a valid rowid.
  TIMEOUT_ON_RESOURCE
  A time-out occurs while Oracle is waiting for a resource.
  TOO_MANY_ROWS
  A SELECT INTO statement returns more than one row.
  VALUE_ERROR

  An arithmetic, conversion, truncation, or>  ZERO_DIVIDE
  Your program attempts to divide a number by zero.
  Oracle PL/SQL Exception 传送门:http://docs.oracle.com/cd/B10500_01/appdev.920/a96624/07_errs.htm


运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.iyunv.com/thread-565588-1-1.html 上篇帖子: Named system exception in Oracle - Predefined PL/SQL Exceptions 下篇帖子: oracle清屏翻页配置
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表