Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. AINSOF

    Calling Oracle sequence.nexval from Informatica

    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...
  2. AINSOF

    Calling Oracle sequence.nexval from Informatica

    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

Part and Inventory Search

Back
Top