Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Can I request that a new feature be added to the "additional columns" of tOracleOutput that would allow you to capture the result of the SQL expression Iif it is a select) and put it on the globalMap?
I need to grab a new sequence number for each row. Which component do I use?
I need to grab a new sequence number for each row. Which component do I use?
I MUST grab the sequence.nextval from Oracle and store it in a context variable or put it into the data flow.
create sequence s1
minvalue 1
maxvalue 999999999
start with 1
increment by 1
nocache;
Can I request that a new feature be added to the "additional columns" of tOracleOutput that would allow you to capture the result of the SQL expression Iif it is a select) and put it on the globalMap?