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 |
Tell me about your experience in informatica? what is best mark you can give yourself? How to answer this question?
How to Migrate the UNIX SCRIPTS from SIT TO PROD?
where does the default group roew in a router is stored what is the default size of memory in router
What are the designer tools for creating transformations?
Insert else update option in which situation we will use
what is diff between IN and EXIT commands
tell me about your project functionality
What do mean by local and global repository?
can we override a native sql query within informatica? How do we do it?
What are the joiner caches?
What is the reusable transformation?
what is tha tracesing level? and difference betweentrace in normal and verbose and nonverbose?