I have a field with ‘|’ delimiter and the designer used the following to set into each attribute field. The problem is nothing is getting returned?
example of the data stored in the source object
1004|1001|138|114222||N
His Script in Designer for extract the column(s) information is:
SUBSTR(Source_Column,
REGEXP_INSTR(Source_Column, ‘|’, 1, 2)+1,
REGEXP_INSTR(Source_Column, ‘|’, 1, 3)-
REGEXP_INSTR(Source Column, ‘|’, 1, 2)-1)