i have source flat file like 1 a,1 b,1 c,2 a,2 b,2 c
i want output as 1 a,b,c and 2 a,b,c ...
how can achieve this
Answer Posted / siva
Take the mapping as (suppose the columns as C1, c2)
SD --> SQ --> Exp --> Agg --> Tgt
In exp define as
c1 <-- c1
c2 <-- c2
v_2 <-- IIF(c1 = v_1,TO_CHAR(v_2) || ', ' || TO_CHAR
(c2),TO_CHAR(c2))
v_1 <-- c1
o_p1 <-- v_2
In Agg
Group by c1
c2 <-- v_2
c11 <-- LAST(c1)
Tgt is connected as
c1 <-- c11
c2 <-- c2
v_ stands for variable port and o_ stands for output port
I think it can be understood by you
Thanks for your response
| Is This Answer Correct ? | 9 Yes | 2 No |
Post New Answer View All Answers
i have a data in my source as a flat files what test i have to perform the next step can any body help to me
what are the Methods For Creating Reusable Transformations?
How big was your fact table
how will u take the data from clint server and next what u do in datamodeling what u will u do in staging area what u will u do next what u are doing please give the step by step by process
How to create different types of slowly changing dimensions (SCD) in informatica using the mapping wizard?
Explain the various test procedures used to check whether the data is loaded in the backend, performance of the mapping, and quality of the data loaded in informatica?
Quickly characterize reusable change?
What is the difference between STOP and ABORT options in Workflow Monitor?
How do you remove duplicate records in informatica? And how many ways are there to do it?
What are the differences between oltp and olap?
Explain direct and indirect flat file loading (source file type) - informatica
In which transformation you cannot drag ports into it?
What are the mapping parameters and mapping variables?
I have two different source structure tables, but I want to load into single target table? How do I go about it? Explain in detail through mapping flow.
What do you mean incremental aggregation?