source table have single column single record having with
single space.
load that source record into trg . trgt having two columns
and the
SOURCE TABLE LIKE
COL1
BHANU PRASAD
TRGT TABLE
COL1 COL2
IN THAT LOAD THE RECORD IN THE trgt table LIKE
COL1 COL2
BHANU PRASAD
HOW ? TELL ME PLZ
Answer Posted / suraj kedia
Let our source table name is "Name",which is having COL1 and
data in it is BHANU PRASAD (For easier understanding instead
of space between bhanu and prasad,lets take a underscore
i.e. BHANU_PRASAD.
Source ----> Exp t/r ----> target
In the exp t/r take "name" as an input port only and create
2 out put ports as COL1 and COL2.
In COL1 give condition
substr(Name,1,instr(Name,'_',1)-1)
In COL2 give condition
substr(Name,instr(Name,'_',1)+1)
now connect COL1 port form exp to COL1 port in tgt and same
for COL2, than the out put in the target table will be as below:
COL1 COL2
BHANU PRASAD
| Is This Answer Correct ? | 14 Yes | 1 No |
Post New Answer View All Answers
Name at least 5 different types of transformations used in mapping design and state the use of each.?
What will be the approach?
What is target designer and target load order?
What are the various types of transformation?
What is a connected transformation?
What does role playing dimension mean?
What is rank transform?
Can we create two repositories on same database instance in oracle?
Why update strategy and union transformations are active?
What are the new features of informatica 9.x at the developer level?
Explain about cumulative Sum or moving sum?
list out all the transformations which use cache?
What all are steps in up gradation of Informatica server?
Reusable transformation and shortcut differences
How can we send the flat file data to different targets(which are also flat files) based on the name of flat file with out adding extra columns?