Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi.
I am trying to retrieve data with tOracleInput, and for afterwords process I want to make sure the values are not null.
So the query includes NVL functions, making it look like this
"SELECT
TABLE.ID,
NVL (TABLE.STR '-1') TXT
FROM
TABLE"
and the schema for tOracleInput is
COLUMN | Db Column | Type | dbType | Nullable
ID | ID | Long | NUMBER | No
TXT | TXT | String | VARCHAR2 | Yes
With this setting, tOracleInput warns me "schema is different from the query"
The input and all the following components work fine, but I would like to get rid of the warning icon if possible.