Issue with Update override at Target table in Informatica.
Answers were Sorted based on User's Feedback
Answer / santosh kumar sarangi
:TU means data coming as input to target.
Just use the query in pre or post sql in target or session.
Let me know if any thing wrong.
Thanks & regards
Santosh kumar Sarangi
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / mukeshb112
There is some issue with Update override.
Default query is:
UPDATE EMPTGT SET ENAME = :TU.ENAME, JOB = :TU.JOB, MGR
= :TU.MGR, HIREDATE = :TU.HIREDATE, SAL = :TU.SAL, COMM
= :TU.COMM, DEPTNO = :TU.DEPTNO WHERE EMPNO = :TU.EMPNO
and I don't want to update all columns so I delete others
My query is
UPDATE EMPTGT SET SAL = 500
WHERE EMPNO = 7900
There is primary key as Empno.
I want to know where is issue in my query.
and what does mean by " :TU " in default query.
Thanks and regards
Mukesh
| Is This Answer Correct ? | 0 Yes | 1 No |
What is the difference between a router and a filter transformation?
what is left outer join?
Can any one give me an example for factless fact table ? If your answer is studunt attendence registration,could you plese give me explanation for this ?
3 Answers Cap Gemini, Puma, Wipro,
Explain scd type 3 through mapping.
What do you understand by SOA of Informatica?
How can we improve session performance in aggregator transformation?
How to delete first 3 rows & last 3 rows in target table in informatica
From where we can start or use pmcmd?
What are the conditions needed to improve the performance of informatica aggregator transformation?
What is the benefit of session partitioning?
suppose if we have dublicate records in a table temp n now i want to pass unique values to t1 n dublicat values to t2 in single mapping using aggregator & router? how
Converting Rows to columns I have Relational source like his. JAN FEB MAR APR 100 200 300 400 500 600 700 800 900 100 200 300 I need to convert these rows into columns to the targe. MONTH TOTAL JAN 1500 FEB 900 MAR 1200 APR 1500 Please experts help me