I created the following trigger to automatically generate sequence number on the RUN_DATE_ID field of EIC_RUN_Date table.
CREATE OR REPLACE TRIGGER RUN_DATE_ID_TRIG
before INSERT on EIC_RUN_DATE
for each row
BEGIN
Select RUN_DATE_SEQ.NEXTVAL
into:NEW.RUN_DATE_ID
From dual;
END RUN_DATE_ID_TRIG...
Hi,
I created an Oracle sequence, and want to use this sequence on a field in my target table. I will like to know if Informatica can call an oracle sequence and how to make the call if it can. WE do not want to use Informatica sequence generator.
Your help is appreciated.
Thanks
AIN
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.