informatica-powercenter

How to pivot data using Informatica when you have variable amount of pivot rows?

折月煮酒 提交于 2019-12-02 03:15:35
Based on my earlier questions , how can I pivot data using Informatica PowerCenter Designer when I have variable amount of Addresses in my data. I would like to Pivot e.g four addresses from my data. This is the structure of the source data file: +---------+--------------+-----------------+ | ADDR_ID | NAME | ADDRESS | +---------+--------------+-----------------+ | 1 | John Smith | JohnsAddress1 | | 1 | John Smith | JohnsAddress2 | | 1 | John Smith | JohnsAddress3 | | 2 | Adrian Smith | AdriansAddress1 | | 2 | Adrian Smith | AdriansAddress2 | | 3 | Ivar Smith | IvarAddress1 | +---------+------

How to run only failed sessions in a workflow

↘锁芯ラ 提交于 2019-12-01 13:18:24
In a workflow there are sessions connected in parallel and in sequence. Suppose some sessions which are in parallel and in sequential mode are failed, How do I restart the workflow with only failed sessions. How can I design this in Informatica? Turn 'suspend on error' for workflow Turn 'restart on recovery' for each session in workflow Now if any session fail workflow will be suspended until you fix the problem and hit recover on workflow in monitor. When you do so it cause to restart only failed sessions. A large publishing client asked us to implement something similar to what you asked. We

Informatica: Prev column value display

北战南征 提交于 2019-11-29 11:59:32
The data in the source table is as follows: - Empno Ename sal 101 Allen 1000 102 Alex 2000 103 Tom 1500 104 Cb 2100 I want the output to be as follows :- Empno Ename sal 101 Allen 0 102 Alex 1000 103 tom 2000 104 Cb 1500 Can you please tell me by using which transformation i can acheive the result. Also plz let me know the logic. Add an expression transformation with two variable ports: PORT EXPRESSION in_sal N/A v_previous_sal v_current_sal v_current_sal in_sal out_sal v_previous_sal Read this excerpt from the documentation to understand the port order: The Integration Service evaluates ports