how to convert
101 raja 101 raja sekar reddy
101 sekar---------->
101 reddy
Answers were Sorted based on User's Feedback
Answer / purushotham perumalla
Create variable ports in Expression transformation to
concat name if the number is same as follows
Assume the input field names are number and name
define the variable ports in expression transformation in
the following order
v_flag = iif(number = v_number,0,1)
v_name = iif(v_flag = 1,name,v_name ||' '||name)
v_number = number
O_name = v_name
The output of o_name will be as follows
number o_name
----------------
101 raja
101 raja sekar
101 raja sekar reddy
Add an aggregator transformation after expression and group
by number. output number and o_name from aggr to target.
As aggr outputs last row in each group by deault it will
send 101 raja sekar reddy to the output.
| Is This Answer Correct ? | 3 Yes | 0 No |
Can any one describe what is audit table briefly?how does it look like and what are the columns in it?
how can you load data into target table without leading zeor's
In warehouses how many schemas are there?
why do u use shortcuts in informatica.?
In which circumstances that informatica server creates Reject files?
COM components can be used in Informatica
delete data from staging table as it loads to target table.here is the case we are getting data from 3 different server.a b and c.the data from server A loaded into staging table and we ran the task and data loaded to target table.now today data from server B and C also got loaded to the staging table.now what techniques and what transformations should be used to delete only the data which has been loaded only to the target.we need to delete only that data from staging which has been loaded into the target.looking for your responses
What is a diff between joiner and lookup transformation
16 Answers CTS, Satyam, TCS, UHG,
What are the data movement modes in informatcia?
Hi Everybody, I have one fixed width file as source and 4 oracle tables (relational) as target. What are the Unit test cases i need to implement ? 1.Using TextPad software i tested postion of the field 2.As per specification i tested like whether it is correctly mapped or not? Is there any other test case do i need to implement. If possible can any one give me the test cases Advance Thanks
what is INFORMATICA TESTING process
In Joiner Transformation, how to identify the master and detail tables if one is from Oracle and the other is from Sybase.