Input Settings
The following table lists the configuration on the Input Settings tab of the Oracle database call procedure activity:
Field | Description |
---|---|
Call Procedure Statement |
Enter the SQL statement to call the procedure.
The procedure can have no output
parameters, simple output parameters, or one
or more cursors as output parameters. The
call procedure query can be constructed
using substitution variables (or substitution
parameters) of the form
Each substitution variable identifies a parameter whose mapped value is substituted in the variable at runtime. You can provide a value in the parameters that have Direction mapped as IN in the input. If a parameter has Direction set to OUT, it is mapped in the output. If the Direction is set to INOUT, the parameter is mapped in both input and output. Note: To indicate the end of a query, include a semicolon (;) at the end of the query. A missing semicolon results in an unresponsive query.
Simple output parameter example:
Here, Cursor output parameter example:
Here, Note: REFCURSOR type parameters are only supported with OUT direction.
|
Manually Configure Metadata | Set this option to True to fetch table metadata manually. You must set this option to True as you must manually specify the data type and direction of the parameters for the stored procedure. For more information, see Configuring Metadata of SQL statements manually. |
Table Schema | Table Schema displays the metadata of the SQL query statement. You can modify the column metadata if Manually Configure Metadata is set to True. Manually specify the data type and direction of the parameters for the stored procedure. All cursor type parameters should have datatype as REFCURSOR. |