how to design mapping half of source table records into one
target and remaining half into another target
Answer Posted / neha
IT is not possible thru Informatica, you need to write Unix
Script for this.
| Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
Why update strategy and union transformations are active?
What is decode in static cache?
Have you worked with/created Parameter file
What is Index Caches size?
What are the settings that you use to configure the joiner transformation?
Tell me any other tools for scheduling purpose other than workflow manager pmcmd?
How to open an older version of an object in the workspace?
what is the size of your data warehousing?
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?
Explain the pipeline partition with real time example?
How to elaborate tracing level?
rank() over (partition by opt2.dim_plat_site_id, opt2.dim_site_opt_sid order by case when opt2.dm_market_flg in ('Y', 'U') then 1 else 2 end, lkp.contact_rank) as rank1, case opt2.contact_type when 'Buyer' then row_number() over (partition by opt2.dim_plat_site_id, opt2.dim_site_opt_sid, lkp.contact_rank order by has_name_flg desc, ship_to_flg desc , last_order_dt desc) when 'Decision Maker' then row_number() over (partition by opt2.dim_plat_site_id, opt2.dim_site_opt_sid, lkp.contact_rank order by has_name_flg desc , last_quote_dt desc , mailability_score desc , source_ranking desc) when 'Influencer' then row_number() over (partition by opt2.dim_plat_site_id, opt2.dim_site_opt_sid, lkp.contact_rank order by has_name_flg desc, mailability_score desc, source_ranking desc) when 'Payer' then row_number() over (partition by opt2.dim_plat_site_id, opt2.dim_site_opt_sid, lkp.contact_rank order by has_name_flg desc, mailability_score desc, source_ranking desc) --elu 05/28/2013 else row_number() over (partition by opt2.dim_plat_site_id, opt2.dim_site_opt_sid, lkp.contact_rank order by has_name_flg desc, mailability_score desc, source_ranking desc) end rank2 row_number() over (partition by opt3.dim_plat_site_id, opt3.dim_site_opt_sid order by rank1,rank2) as "rank", case when "rank"<= opt3.maximum_value then 'Y' else 'N' end as include_flg
Which transformation is needed while using the Cobol sources as source definitions?
Explain joiner transformation in informatica
How is Source Side push down optimization different to just providing a SQL override in Source qualifier transformation.