Oracle - Identify line in which exception occurs

1

Someone can tell me how I identify the line of code in which an exception occurs in oracle, what I want to do is when an exception comes up, grab the description and the line and save it in a table of errors, so I can identify in which part of the package does not have exceptions controlled.

Greetings.

    
asked by RSillerico 27.06.2016 в 16:11
source

1 answer

0

Following Oracle's documentation it would be as simple as invoking:

LOG ERRORS [INTO [schema.]table] [('simple_expression')] [REJECT LIMIT integer|UNLIMITED]
    
answered by 28.06.2016 в 17:03