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



In what scenario we use to improve session performance by pushdown optimization?can any one give exa..

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

In what scenario we use to improve session performance by pushdown optimization?can any one give exa..

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

Post New Answer

More Informatica Interview Questions

how tokens will generate?

0 Answers  


HOW DO YOU PARFORM INCREMENTAL LAOD ?

7 Answers   SAIC,


If a session fails after loading of 10,000 records in to the target. How can you load the records from 10001 th record when u run the session next time?

4 Answers  


If we have 1000 rows were loaded in to datawarehouse and next day the source have 1010 rows so, how can we loaded only updated rows into target.

6 Answers   Accenture,


wt is Dynamic lookup Transformation? when we use?how we use?

2 Answers   TCS,






How do you load first and last records into target table? How many ways are there to do it? Explain through mapping flows.

0 Answers  


in which situations we go for pesistent cache in lookup and which situations go for shared lookup cache?

2 Answers   Cap Gemini,


How the informatica server sorts the string values in Rank transformation?

1 Answers   Informatica,


Do joiner transformation use cache? If so describe?

2 Answers   Patni,


wat are deployement groups in informatica, how it will be used for developers

0 Answers  


What is active and passive transformation?

10 Answers  


How to elaborate powercenter integration service?

0 Answers  


Categories