i have a source which relational.I am trying to populate to
target flat file with one column for daily date which is
sysdate.
I want to populate the sysdate coulmn with DD/MM/YYYY
format.
kindly provide a solution for this..my clear that my target
is flat file.

Answers were Sorted based on User's Feedback



i have a source which relational.I am trying to populate to target flat file with one column for d..

Answer / aakansha

In expression write following if target field is defined
with DATE datatype:
TO_DATE(TO_CHAR(SYSDATE,'DD/MM/YYYY'))

If target field defined with character datatype then use:
TO_CHAR(SYSDATE,'DD/MM/YYYY')

Is This Answer Correct ?    14 Yes 0 No

i have a source which relational.I am trying to populate to target flat file with one column for d..

Answer / prabhas

In expression transformation create one out put port, and
write like: TO_DATE('SYSDATE'.'DD/MM/YYYY').
Connect this port to target.

Is This Answer Correct ?    7 Yes 4 No

i have a source which relational.I am trying to populate to target flat file with one column for d..

Answer / ramana

we need two pipelines in mapping.In first pipeline,take expression trans,create one port with date type and assign sysdate to it.After drag this port to target file.
In the second pipeline load the source record into target file.But here we need to select APPEND IF EXISTS option.Both pipelines we need to give same file name.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Informatica Interview Questions

What are the disadvantages of Sequence Generator T/R?

3 Answers   Zensar,


Suppose in the next version of Informatica, RTR Xn is excluded. Then how will u route data to different tgts?

2 Answers   Deloitte,


write a query to remove null value follwing table? col1 col2 col3 dinesh null null null suresh null null null prakesh i want the output col1 col2 col3 dinesh suresh prakesh

4 Answers   Accenture, TCS,


What does update strategy mean, and what are the different option of it?

0 Answers  


why we are using surogate key in real time give me explanation

2 Answers   TCS,






Could you explain what is enterprise data warehouse?

0 Answers  


Why update strategy and union transformations are active?

0 Answers  


Can we have a Mapping without a Source Qualifier?

14 Answers   Deloitte,


What are the modules in Power Center

0 Answers  


sorce is a flatfile only 1st and last row should insert to target how will u do?

2 Answers   HCL,


How to load data in informatica ?

0 Answers  


if i have records like these (source table) rowid name 10001 gdgfj 10002 dkdfh 10003 fjfgdhgjk 10001 gfhgdgh 10002 hjkdghkfh the target table should be like these by using expression tranformation. (Target table) rowid name 10001 gdgfj 10002 dkdfh 10003 fjfgdhgjk xx001 gfhgdgh xx002 hjkdghkfh (that means duplicated records should contain XX in there rowid)

5 Answers   iFlex,


Categories