GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Tech FAQs  >  Informatica

 Print  |  
Question:  How three column in one table concatenated in Informatica?

Answer: 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.


August 08, 2008 05:13:07 #3
 sakthi.jaganathan Oracle Expert  Member Since: August 2008    Total Comments: 7 

RE: How three column in one table concatenated in Informatica?
 
First thing you want to note is all three datatypes should be same, then concat (sal,comm,deptno). It will work i am sure in this, because i tried it.
     

 

Back To Question