How does place restriction on to delete row from table?

Options
- raise_application_error
- application_error
- error
- Raise


CORRECT ANSWER : raise_application_error

Discussion Board
RAISE_APPLICATION_ERROR

RAISE_APPLICATION_ERROR is a built-in procedure in oracle which is used to display the user-defined error messages along with the error number whose range is in between -20000 and -20999. Whenever a message is displayed using RAISE_APPLICATION_ERROR, all previous transactions which are not committed within the PL/SQL Block are rolled back automatically (i.e. change due to INSERT, UPDATE, or DELETE statements). RAISE_APPLICATION_ERROR raises an exception but does not handle it.

Prajakta Pandit 02-21-2017 06:16 AM

Write your comments


Enter the code shown above:

(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)


Advertisement