GeekInterview.com
Series: Subject: Topic:

Informatica Interview Questions

Showing Questions 1 - 20 of 714 Questions
First | Prev | | Next | Last Page
Sort by: 
 | 

How we can validate all mapping at a time?

Asked By: Ramesh12888 | Asked On: May 26th, 2012

We can validate all mappings in powercenter repository manager window by each folder.

How to only last 100 records from a flatfile?

Asked By: Interview Candidate | Asked On: May 26th, 2012

Thru Informatica how we can load only last 100 records.

How to load data from Oracle table source to flat file using Informatica?

Asked By: wadate | Asked On: May 25th, 2012

Hi all, I have Oracle data source table and flat file target, now I want load data from Oracle table source to flat file? How can I do? Which tranformation needs to this one? Please give solution with steps. thanks in advance.

Target details verification

Asked By: sarun5 | Asked On: Feb 24th, 2008

If the records are transfered from source to target and if you want to check whether all the records are stored in the target. What are the possible ways to check that.

Answered by: Rishak on: May 21st, 2012

If you want to check the records,you can directly use MINUS query for eg

Code
  1.  SELECT  count(*) FROM source
  2. minus
  3. SELECT count(*) FROM target
  4.  
  5.  

Hope this will help Thanks Risha

Answered by: skaur29 on: Nov 17th, 2011

1) Check Session Logs
2) Use Preview Data option for Target in PowerCenter once session is completed
3) Sql queries if it is a Relational database

How can we load date type of data in month wise in Informatica?

Asked By: chary_vurimalla0246 | Asked On: Sep 21st, 2011

Answered by: rakesh on: May 18th, 2012

TO_CHAR(DATE,MM) or
TO_CHAR(DATE,MON) or
TO_CHAR(DATE,FMMONTH)

Answered by: mouni on: Apr 30th, 2012

ex :to_char(trunc(sysdate),mm)
to_char(date,mm)

Error handling logic

Asked By: ash22 | Asked On: Apr 18th, 2009

How do you handle error logic in Informatica? What are the transformations that you used while handling errors? How did you reload those error records in target?

Answered by: Umesh on: May 14th, 2012

So we create 2 variable for every field on which we have to do error logging. 1 variable will check the condition for error (i.e. check for isnull or check for datatype) and assign NULL if it does not...

Answered by: prashant.baranwal on: Sep 11th, 2010

It is one of the most common concept which is being implement in alomost all DW projects. A very simple way of handing error and with their approprite messages is:Concat all the columns with a delimet...

How to delete duplicate rows in flat files source is any option in Informatica

Asked By: sravan | Asked On: Jan 25th, 2006

Answered by: santanu on: May 11th, 2012

Use the file as source, then a sorter, and then a expression to store the previous value,filter those which matches the previous record and the load them into the same flat file as target

Answered by: ram_infa on: Sep 13th, 2011

By using the sorter transformation, one can delete the duplicate values in a flat file

How to connect in mapping from target to any other transformation in Informatica ?

Asked By: shaikiliyas | Asked On: Apr 15th, 2011

I have two target tables,so I want to make union of both the target,so please let me know about this

Answered by: santanu on: May 11th, 2012

Make two flows in the same mapping:
flow 1: load both the targets
flow 2: use both the targets as the source and use SQL override to join the tables. Then load them into a single table

Answered by: Sreedhar Lokaray on: Nov 3rd, 2011

I think your question is how to merge the records from two targets after they got loaded? If this is your question then first import the two target tables as source tables. Complete the mapping to loa...

Informatica solve pcsf_10342

Asked By: akmohanty | Asked On: Mar 14th, 2012

How to solve pcsf_10342 when enabling integration service in Informatica 8.6.1 ?

Answered by: Sudarshan on: May 2nd, 2012

Login to the admin console and delete the repository content and recreate it. Restart the integration service. It works!

Structure of the reject file in Informatica

Asked By: PPRASADPMP | Asked On: Apr 4th, 2012

What is the structure of the reject file in Informatica?

Answered by: Kiran on: Apr 15th, 2012

There is no predefined structure for bad files. It has the same structure as of the target table.

What is redo log file in Informatica ?.

Asked By: Manoj | Asked On: Aug 3rd, 2007

Answered by: Suhel Shaikh on: Apr 4th, 2012

There is no redo log file in informatica.Its in oracle.

Answered by: jayapraveen on: Oct 5th, 2010

Redo log file stores the value only after the" Commit "Transaction Occurs

If you have four lookup tables in the workflow. How do you troubleshoot to improve performance?

Asked By: Kalam | Asked On: Feb 10th, 2006

Answered by: Utkarsh on: Mar 25th, 2012

1) Create Indexes on look up tables.
2) Try to use static cache instead of Dynamic cache.
3) Use Pushdown Optimization.

Answered by: gazulas on: Feb 11th, 2006

there r many ways to improve the mapping which has multiple lookups.1) we can create an index for the lookup table if we have permissions(staging area).2) divide the lookup mapping into two  (a) ...

Informatica error rep_12014 : error occured while accessing the registry

Asked By: vishallakhotia | Asked On: Oct 20th, 2011

Hiiam learning Informatica 8.1 ( which is what I could get my hands on)..I am connecting to Oracle 10g.I created 2 connections to the db using connection --> relational connection browser.The source and target are the same db in this case, just diff table names. But created 2 separate connections .I...

Answered by: Raghu on: Mar 9th, 2012

Delete it

Answered by: Lokesh M on: Dec 20th, 2011

Try these and see if it helps

- Delete statics and try to retrieve.
- Try to export with INDEXES=n STATISTICS=none
- Disable auditing with "noaudit session"
SQL> noaudit session;

Suppose I have one source which is linked into 3 targets.When the workflow runs for the first time only the first target should be populated and the rest two(second and last) should not be populated.When...

Asked By: Thiyagarajan | Asked On: Nov 7th, 2006

Answered by: Binitha on: Feb 23rd, 2012

• Create mapping variable, say $$Runcount • Use sequence genereator to create unique values for the records, use reset property in the sequence generator • Use expression transformation o Crea...

Answered by: Sanjay Vijayant on: Sep 8th, 2011

First create a sequence generator where startwith=1 and maxvalue=3, enable the option "cycle". Make sure cache value is set to 0. In the data flow use expression to collect dataflow ports and add a n...

What is SCD type 3 and where do you use it in implementation ?

Asked By: amk742 | Asked On: Apr 20th, 2011

Answered by: sriinivas kasiboina on: Feb 15th, 2012

SCD Type 3 is used when it is necessary for datawarehouse to keep track of historical changes and when such changes will only for finite number of times.

Answered by: sriram on: Sep 27th, 2011

scd type3 is used for loading the current & most previous data into target

Hi, how we validate all the mappings in the repository at once

Asked By: surendrapoluparti | Asked On: Nov 6th, 2006

Answered by: swaroopkanth on: Feb 8th, 2012

We can validate all the mappings in the repository at once. This is possible through the repository manager.

Answered by: Jai on: Dec 25th, 2011

Guru, It is not possible to validate all the mapping to which is present in Repo either from Repo Manager or Designer. The reason , There could be more than one folder, Each folder may contain some...

Dimension table vs fact table

Asked By: goutamhere2interact | Asked On: Jun 18th, 2008

What is the main difference in the logic when you create a mapping for a dimension table with that of a fact table in Informatica.

Answered by: ASHU on: Jan 21st, 2012

A Dimension table contain descriptive (detailed) data and a fact table contain measurements (facts) which are used to evaluate a business, all numeric are not a facts but the numeric which are key performance indicators is known as facts.. fact table contain summarized data....

ASHU (KARIMNAGAR)

Answered by: Nitin on: Nov 30th, 2011

Please specify the definition sir

Code
  1. printf("hid");

How many types of dimensions are available in Informatica?

Asked By: Deeprekha | Asked On: Jul 24th, 2006

Answered by: Santosh on: Dec 26th, 2011

In Informatica 4 types of dimensions are available, these are 1) Degenerate dimensions 2) Junk dimesnsions ( a dimension which contains the less numbers of cordinality vales are less number of ind...

Answered by: suren on: Nov 22nd, 2011

Hi Guys, Please don't answer wrong answers the above mentioned are Schema. , the dimension are discussed bellow. 1.Junk Dimension:Contains miscellaneous data such as flags and indicator 2.Degener...

Index and data cache

Asked By: anilkumar.v | Asked On: Jun 30th, 2011

What is the difference between index cache and data cache

Answered by: santosh on: Dec 26th, 2011

Index cache : Integration service stores all conditional values in to the index cache and all output values into the data cache.

Please correct me anything wrong

Answered by: skaur29 on: Nov 17th, 2011

If we talk with respect to Aggregate Transformation , then Index Cache stores the Group Values and data Cache stores the Actual Data which is Row data.

What is the difference between source preload and source postload?

Asked By: prasad mallipeddi | Asked On: Apr 17th, 2011

Answered by: Sumithav29 on: Dec 20th, 2011

In Stored Procedure transformation we can also specify when the SP should run.Its Normal,Pre-load of the Source,Post-load of the Source,Pre-load of the Target and Post-load of the Target. Pre-load of...

Answered by: Anubhav Raikar on: Nov 15th, 2011

If you are asking this in terms of Stored Procedure Transformation, then the SP would be run before the Source fetches any data (in case you select Source PreLoad) .. and in case of Source PostLoad th...

First | Prev | | Next | Last Page

 

 

Connect

twitter fb Linkedin GPlus RSS

Ads

Interview Question

 Ask Interview Question?

 

Career Counselling

 Have Career Question?

 Ask Chandra

 Ask Only Career questions.

Follow us:
 

Latest Questions

Ads

Interview & Career Tips

Get invaluable Interview and Career Tips delivered directly to your inbox. Get your news alert set up today, click "Subscribe".