my source contain data like this
cno cname sal
100 rama@gmail.com 1000
200 karuna@yahoo.com 2000
i want load my data to the target is
cno cname sal
100 rama 1000
200 karuna 2000
plz send the answer
Answers were Sorted based on User's Feedback
Answer / abhinaw prakash
1.Pass the coulmns to an expression transformation.
2.Create a variable port and use INSTR function to find the
location of @.
(INSTR(CNAME,'@')-1)
3.Create an output port and use SUBSTR function to extract
the substring from the string.
SUBSTR(CNAME,1,v_CNAME)
4.Pass it to the output port
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / c
In the expression transformation use the following:
select cno,substr(cname,1,position('@' in cname)-1)as cname,sal from sample
| Is This Answer Correct ? | 0 Yes | 0 No |
Under what conditions selecting sorted input in aggregator will still not boost session performance?
one source to target loading insert new rows and update existing rows?
How to create the source and target database connections in server manager?
what is mapping parameter and mapping variables
What are the types of data that passes between informatica server and stored procedure?
In aggregator transformation, I sort the data before aggregator and select sorted port but still I’m getting an error. What is that error?
What is difference macros and prompts?
Can you start a session inside a batch individually?
3.how will u get information about bugs how will u rectify the bugs in realtime whch tool we are using to rectify the bugs
What are the mapping paramaters and mapping variables?
Update strategy transformation is an active transformation.How it changes the number of records that pass through it? Please explain....
my session have to run Monday to Saturday not run sunday how to sedule in informatica level?
1 Answers Infinite Computer Solutions,