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.
RE: How three column in one table concatenated in Informatica?
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.....