plsql - ODI || Create Multiple Rows From Single Comma Separated Row -
i have comma separated list of values 2 columns , unique key single row. want create single row each comma separated row key repeating each value.
for example, have
unique_id || date || price abc || 2013/01/10,2013/01/11 || 12,13
what want is
abc || 2013/01/10 || 12 abc || 2013/01/11 || 13
the comma separated values can upto n.
i using odi 11g (oracle data integrator). how can this?
Comments
Post a Comment