1.

Does Raise_application_error Overwrite The Error Stack Or Append Messages To The Error Stack?

Answer»

The default behavior of the RAISE_APPLICATION_ERROR procedure is to overwrite the error message stack. However, if the parameter is PASSED, then the MESSAGES can be appended to the error stack as well. Following is the syntax of the RAISE_APPLICATION_ERROR procedure:

In the preceding syntax, TRUE adds the messages to the error stack; whereas, FALSE overwrites the error stack.

The default behavior of the RAISE_APPLICATION_ERROR procedure is to overwrite the error message stack. However, if the parameter is passed, then the messages can be appended to the error stack as well. Following is the syntax of the RAISE_APPLICATION_ERROR procedure:

In the preceding syntax, TRUE adds the messages to the error stack; whereas, FALSE overwrites the error stack.



Discussion

No Comment Found