In Oracle what table or view of the metadata I have in the parameters of a Procedure.
My question is, does procedures have parameters with the name resembling "XPTO"?
I tried the "dict" but did not find it.
In Oracle what table or view of the metadata I have in the parameters of a Procedure.
My question is, does procedures have parameters with the name resembling "XPTO"?
I tried the "dict" but did not find it.
You could do it like this:
SELECT OBJECT_NAME FROM ALL_OBJECTS A
LEFT JOIN ALL_ARGUMENTS B
ON A.OBJECT_ID = B.OBJECT_ID
WHERE OBJECT_TYPE IN ('PROCEDURE') AND
B.ARGUMENT_NAME = 'XPTO'