How three column in one table concatenated in Informatica?

How three column in one table concatenated in Informatica?When i am giving SAL || COMM || DEPTNO in exp it's failed to read during testing.By giving (CONCAT(CONCAT(SAL,COMM),DEPTNO)) i am also getting error during testing.

Questions by dkm111

Showing Answers 1 - 15 of 15 Answers

raj_infadev

  • Oct 13th, 2008
 

In Informatica its better to use the symbols to make the operation faster cause Power Center Server can understand the symbols more easily than the function names....

For Example: Concatenation operation can be done like this....

Create 2 variable ports V1 & V2

V1 ---> SAL || COMM
V2 ---> V1 || DEPTNO

Output Port ---> V2....

Hope you understood or else let me know to make it clear.....

Regards
Raj

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions