In what scenario we use to improve session performance by pushdown optimization?can any one give example?
Answers were Sorted based on User's Feedback
Answer / srinath.p
Push down Optimization is the great option provided by
informatica powercenter. this senario is used in both source
and targets are databases
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / jaspreet banga
One can push transformation logic to the source or target
database using pushdown optimization. The Integration
Service translates the transformation logic into SQL
queries and sends the SQL queries to the source or the
target database which executes the SQL queries to process
the transformations. The amount of transformation logic one
can push to the database depends on the database,
transformation logic, and mapping and session
configuration. The Integration Service analyzes the
transformation logic it can push to the database and
executes the SQL statement generated against the source or
target tables, and it processes any transformation logic
that it cannot push to the database.
just consider the example:----
Suppose a mapping contains a Filter transformation that
filters out all employees except those with a DEPTNO
greater than 40. The Integration Service can push the
transformation logic to the database. It generates the
following SQL statement to process the transformation logic:
INSERT INTO EMP_TGT(EMPNO, ENAME, SAL, COMM, DEPTNO)
SELECT
EMP_SRC.EMPNO,
EMP_SRC.ENAME,
EMP_SRC.SAL,
EMP_SRC.COMM,
EMP_SRC.DEPTNO
FROM EMP_SRC
WHERE (EMP_SRC.DEPTNO >40)
The Integration Service generates an INSERT SELECT
statement and it filters the data using a WHERE clause. The
Integration Service does not extract data from the database
at this time
| Is This Answer Correct ? | 0 Yes | 0 No |
following source name gender ramya female ram male deesha female david male kumar male i want the target male female ram ramya david deesha kumar any body give solution above question?
What are the new features of informatica 9.x developer?
Hi All, i have question regarding Change Data Capture in Informatica. As i know we can do this using Incremental Aggregation(i never worked on Informatica but i read) and i think we can do the same with SQL Over write and with variables. Can someone tell me how do we do this using other two techniques.. using SQL Over write and variables. Thanks for the help and greatly appreciated.
i have a session which creates a file every time when i runs the session, but it replaces the first file with second file,i want to append the second file follwed by first file when i runs the session,how to achieve this?
how can we load first and last record from a flat file source to target?
7 Answers Infosys, ITC Infotech,
Can we use the mapping parameter or variables developed in one mapping into any other reusable transformation?
I want skip first 5 rows to load in to target? what will be the logic at session level ??
How do you load first and last records into target table?
I am getting five sources in a day and i donot know when i get them. i need to load data into the target and run the session. but here i can't keep the session in running or can't stop the session. plz help me
What are the validations that you can perform in oracle and in informatica ? Advance Thanks
If sal is null then replace it with min(sal). Can any one write a query for this in oracle ? Advance Thanks
How do we implement materialized view?when to use materialized view?