[Updated] Goldman Sachs Aptitude Test Questions and Answers
Practice List of TCS Digital Coding Questions !!!
Take 50+ FREE!! Online Data Interpretation Mock test to crack any Exams.

Technical Interview Questions and Answers :: Informatica

    1 / 94

    How are dimension and fact tables created?
    Answer:

    No Discussion on this question yet!

    Please Login First :

    2 / 94

    Different types of facts.
    Answer:

    Type of facts are:

    Additive: Additive facts are facts that can be summed up through all of the
    dimensions in the fact table. A sales fact is a good example for
    additive fact.

    Semi-Additive:Semi-additive facts are facts that can be summed up for some of the dimensions in the fact table, but not the others.

    Eg: Daily balances fact can be summed up through the customers dimension but not through the time dimension.

    Non-Additive:



    Non-additive facts are facts that cannot be summed up for any of the dimensions present in the fact table.

    Eg: Facts which have percentages, ratios calculated.

    Please Login First :

    3 / 94

    Perform operations in flat file(Ex: how to pull n records from flat file)
    Answer:

    No Discussion on this question yet!

    Please Login First :

    4 / 94

    Difference in connected and unconnected lookup.
    Answer:

    No Discussion on this question yet!

    Please Login First :

    5 / 94

    What happens if group by is not selected in aggregator.
    Answer:

    The Aggregator gives only one record as output. That only record will be last record.

    Please Login First :

    6 / 94

    Can UnConnected Lookup return more than one port? if so then how?
    Answer:

    Yes it can but not directly. Use look up override to concatenate required columns and take this concatenated to expression and separate all fields from concatenated one.

    Please Login First :

    7 / 94

    All type of cachce. What is, and how to use with example
    Answer:

    No Discussion on this question yet!

    Please Login First :

    8 / 94

    What are the types of Caches in lookup? Explain them.
    Answer:

    No Discussion on this question yet!

    Please Login First :

    9 / 94

    All types of join. What is, and how to use with example
    Answer:

    No Discussion on this question yet!

    Please Login First :

    10 / 94

    How to found 7th max salary without using top function.
    Answer:

    How to find 7th highest salary in Oracle SQL.

    TABLE NAME: EMP

    SELECT * FROM EMP E1 WHERE 7=(SELECT COUNT(DISTINCT(SALARY)) FROM EMP E2 WHERE E2.SALARY>=E1.SALARY);

    Please Login First :