In Flat file
Input is
A
B
C
I need output like this
A
A
A
B
B
B
C
C
C. How will u achieve this?
Answers were Sorted based on User's Feedback
Answer / abhinaw prakash
We can use normalizer for this.
send the ports from SQ to Normalizer.
In Normalizer put the occurrence of the incoming column as 3.
Connect the only column from SQ to the 3 incoming port in
Normalizer.
Connect the O/P column from Normalizer to target.
| Is This Answer Correct ? | 20 Yes | 0 No |
Answer / moorthy, g
Hi All,
SRC-SQ-JAVA-TGT
In Java Transformation:
on Input row:
you have to add
for(int i=0;i<3;i++)
{
IN_NAME=OUT_NAME;
generateRow();
}
this is the simple way... we can do this.
Best Regards,
Moorthy. G
http://manthiramoorthy.blogspot.in/
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / jyothi
source s1
take 3 instance of Target(
t1
/
/
s1---exp----t2
\
\
t3
load data we will get record as mentioned in output
| Is This Answer Correct ? | 4 Yes | 3 No |
Answer / ankur saini
to make this simple from sq--take 3 expressions---add union
to take data from theses three expressions
| Is This Answer Correct ? | 0 Yes | 2 No |
Answer / jyothi
source s1 contains input data (A B C)
take 3 flows in mapping
create 3 instances for the target.
ex: target is T .Instances for T are t1 t2 t3
t1
/
/
s1---exp---t2
\
\
t3
load the data into targets using target load strategy
then we will get output as above
| Is This Answer Correct ? | 0 Yes | 3 No |
What is informatica powercenter repository?
Can you use one mapping to populate two tables in different schemas
how do u use sequence created in oracle in informatica? Explain with an simple example
how to identify new and old values in source qualifier or any other transformations using informatica
What are the designer tools for creating transformations?
What is a grid in Informatica?
What are the types of lookup?
How can i send first half of the records to one target and Remaining to other target?
Hello, Can you please send the admin and advanced mapping design sample questions to ns_sharmin@yahoo.com?
How to calculate the cache size if say we are doing a performance check on a mapping and found that a particular cache needs to be changed. Is there a formula to calculate this! i know that informatica has a auto option available but how to calculate manually?
i did MBA in 2008. i got job as a Software Engineer(Informatica) in 2008 February in our college campus interviews through consultancy. my problem is when iam going interview HR people ask " YOu are MBA graduate how u get software(informatica) job". iam saying i got job in campus interviews. i have knowledge in informatica in dataware housing. is this answer correct or not. plese give me guidence
My source is like bellow F.NAME M.NAME L.NAME A B C D E F G H I and out put should like S.NO F.NAME M.NAME L.NAME 1 A B C 2 D E F 3 G H I 4 UNNOWN UNNOWN UNNOWN How can we acheive? please explane me indetail