i have source data like
id name sal
1 a 65020
2 b 78250
3 c 58264
but how to get target like this
id name sal
1 a Sixty five thousand twenty
2 b Seventy thousand two fify
3 c Fifty eight thousand two sixty four
Answer Posted / chiky
if its in oracle database,use
select id, name, (SELECT TO_CHAR (TO_DATE sal, 'j'), 'jsp')
FROM DUAL) sal from <source_table_name>
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the differences between oltp and olap?
I want my deployment group to refer an external configuration file, while i deploy in the production environment. How can i achieve it.
What does “tail –f” command do and what is its use as an Informatica admin.
What is informatica powercenter repository?
COL1,COL2 ABC,1 XYZ,2 HERE IN COL2 VALUES 1,2 NOT STSANDARD(IE MEANS NOT FIXED VALUES LIKE OTHER SOME VALUES LIKE 10,20) O/P IS COL1,COL2 ABC,2 XYZ,1
What is pmcmd command?
Scheduling properties,whats the default (sequential)
Define pmcmd command?
How can we store previous session logs?
Give one example for each of conditional aggregation, non-aggregate expression, and nested aggregation?
How you can differentiate between connected lookup and unconnected lookup?
Briefly describe lookup transformation?
can any one give some examples for pre sql and post sql(Except dropping and creating index).
What are the data movement modes in informatica?
Hi, In source I have records like this No name address 10 manoj mum 10 manoj dilhi 20 kumar usa 20 kumar Tokyo I want records in target like shown below No name addr1 addr2 10 manoj mum dilhi 20 kumar usa Tokyo If it is reverse we can do this by using Normalizer transformation by setting occurance as 2. Somebody will say use denoralization technique. But as of my knowledge I couldn’t find any denormalization technique. Is there any concept like that? I tryid this seriously but I could find any idea to implement this. Can any one please help me ? Advance Thanks