What is an Exception ? What are types of Exception ?
Answers were Sorted based on User's Feedback
Answer / tulsi
Exception is the error handling part of PL/SQL block. The
types are Predefined and user_defined. Some of Predefined
execptions are.
CURSOR_ALREADY_OPEN
DUP_VAL_ON_INDEX
NO_DATA_FOUND
TOO_MANY_ROWS
INVALID_CURSOR
INVALID_NUMBER
LOGON_DENIED
NOT_LOGGED_ON
PROGRAM-ERROR
STORAGE_ERROR
TIMEOUT_ON_RESOURCE
VALUE_ERROR
ZERO_DIVIDE
OTHERS.
Is This Answer Correct ? | 6 Yes | 0 No |
Answer / chintu
Any ubnormal event in a program is called Exception.
In pl/ sql there are two types of exceptions they are
Userdefind Exception and predefined Exceptions.
Predefined exceptions are
CURSOR_ALREADY_OPEN
DUP_VAL_ON_INDEX
NO_DATA_FOUND
TOO_MANY_ROWS
INVALID_CURSOR
INVALID_NUMBER
LOGON_DENIED
NOT_LOGGED_ON
PROGRAM-ERROR
STORAGE_ERROR
TIMEOUT_ON_RESOURCE
VALUE_ERROR
ZERO_DIVIDE
OTHERS.
user defined exceptions are defined by raise_application_
error("error msg","error number") and
pragma_exception_init()
Is This Answer Correct ? | 6 Yes | 0 No |
Can 2 queries be executed simultaneously in a distributed database system?
What is pl sql quora?
Explain how procedures and functions are called in a PL/SQL block ?
What is a table in a database?
how to enter numeric values as hex numbers? : Sql dba
Explain how to use transactions efficiently : transact sql
Give the structure of the function ?
How many types of normalization are there?
What is a mutating table
How to move files from one directory to another in pl sql?
Define tables and fields in a database
Explain what is sql*plus?