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  >  Interview Questions  >  Data Warehousing  >  Informatica

 Print  |  
Question:  1.how to enter same record twice in target table? give me syntax.

2. how to get particular record from the table in informatica?

3.how to create primary key only on odd numbers?

4. how to get the records starting with particular letter like A in informatica?





March 03, 2007 10:47:36 #10
 shanthi1   Member Since: March 2007    Total Comments: 6 

RE: 1.how to enter same record twice in target table? ...
 

how to get particular record from the table in informatica?


using a where clause


and to get the records starting with A..write an SQL query in Source Qualifier transformation as..

SELECT * FROM TABLENAME WHERE ENAME LIKE 'A%';

     

 

Back To Question