Home

Informatica Cloud IICS Interview Questions Set-06

IICS Random Interview Questions

What are slowly changing dimensions (SCD types), and which one is most used?

Slowly Changing Dimensions are the mapping logics which are used to load the dimension tables in Data warehouse project.

There are mainly three types of SCD Types logic.
a) Scd Type-1: When we load the dimension table by using Scd type-1 logic, Dimension table contains only latest data.
b) Scd Type-2: When we load the dimension table by using Scd type-2 logic, Dimension table contains only historical data.
c) Scd Type-3: When we load the dimension table by using Scd type-3 logic, Dimension table contains one previous version data.

In Realtime, we will use mostly Scd type-1 versioning logic and Scd type-2 Date effective logic.

What is an event in Informatica IICS?

The availability of new files or deletion or updating existing files in a specific defined directory in a defined pattern is called as a File Event.

There are two types of file events in IICS.
a) File Event Sources
b) File Event Targets

How to do 2 targets in one data synchronization task Informatica IICS? Can we create a router kind of transformation for different flow?

No, you cannot add two targets in data synchronization task. But you can add multiple sources in synchronization task.

How to convert column to rows in IICS?

By using Normalizer transformation, we can convert columns to rows in IICS.

How does IICS support data governance?

Informatica has implemented new tool called Cloud Data Governance and Catalog products.

How to Parameterize source and target in Informatica IICS?

We can create input parameters in a mapping to parametrize the source and Target connections in Informatica cloud IICS.

Define the source and target Connection parameter values in Param file.

What is dynamic lookup and how it can remove duplicates in Informatica IICS?

Dynamic lookup is used when you want to insert or update the lookup cache at run time. Normally we will use Dynamic lookup cache, when lookup is a target table.

Dynamic lookup can remove the duplicates when NewLookupRow becomes zero.

What is the resources provided by Informatica Cloud REST API.?

Informatica Cloud REST API lets you can access the (metadata) information from your Informatica Intelligent Cloud Services organization.

It also allows you to perform tasks such as create, update, delete connections, schedules and tasks.

What is the default timeout for the listener to wait for file in Informatica IICS?

If a file event does not occur, by default, the taskflow waits for 5 minutes.
After that, the File Watch Task step completes and the taskflow proceeds to the subsequent steps.

The maximum value that you can define in the Time Out field is 7 days.

How do you keep up with the most recent updates in Informatica IICS?

  • There are several ways to get and use the information on updates and maintenance
  • As soon as the date is fixed, an email will be received. The aim is to be a few weeks before the update so there is enough time to prepare
  • In addition to mail notifications, information on maintenance or updates is made available in the Events and the status webpage to subscribe.

How to remove symbols and untranslatable characters (junk characters) from source in Informatica IICS?

Below are the few examples we can use in expression transformation to remove the junk characters.

1. REG_REPLACE (PORT_NAME, ‘[^\w,-. ]’, ”) : This function removes the special characters and retains only alphanumeric characters, commas, dashes, and periods.
2. REG_REPLACE(PORT_NAME,'[^a-z0-9A-Z]’,”) : This function retains alphanumeric characters only.
3. REG_REPLACE(PORT_NAME,'[^[:print:]]’,”) : This function looks for ‘[^[:print:]]’ which means its searching for non-printable characters in the field which we are passing and its been replaced with ” (NULL).

Can we invoke Taskflow using file listener in Informatica IICS?

You can invoke a taskflow through a file listener with the connector source type, and select the file listener as the event source. When you publish the taskflow, the taskflow subscribes to the file listener that is defined in it.

When a file event occurs, the file listener invokes the taskflow.

Why update strategy and union transformations are Active in Informatica IICS?

Update Strategy: If any transformation can change the Insert/Update/Delete status of records, that is called an active transformation.
Because update strategy can change the Insert/Update/Delete status of records, that’s why it is an active transformation.

Union: If any transformation has more than one input group or more than one output group, that is called an active transformation. Because Union is having multiple input groups, that’s why union is an active transformation.

How to reverse the data input in Informatica IICS?

We can use a Informatica built-in function called REVERSE (string) to reverse a column in IICS.

What is partitioning in Informatica Cloud Data Integration?

  • Partitioning is a process of enabling the parallel processing of the data through separate pipelines.
  • Currently partitioning can be configured in the Source transformation in the Mapping Designer.
  • You should see partitioning in the mapping source properties. When you configure partitions in the Source transformation, partitioning occurs throughout the mapping.

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

Method 1: use the below mapping flow.

Src –> Exp –> Filter –> Target (For first record)
       –> Aggregator –> Target
In Expression : v_COUNT = v_COUNT + 1
                           out_COUNT =v_COUNT
In first flow filter use condition as out_COUNT=1
In aggregator No group by port selected here. It returns the last row.

Method 2: We can write the shell script using the below commands.
head -1
tail -1
We call it either in command task or pre and post session shell commands in session.

In the Informatica Cloud, how does an update strategy transformation operate?

  • There is no Update strategy transformation available in Information Cloud IICS.
  • In the target transformation in a mapping, Informatica Cloud Data Integration provides the option for the action to be performed on the target – Insert, Update, Upsert, Delete and Data Driven.

What is your role in present project as well previous one?

My Role in Present and previous project is Informatica ETL Developer.

What type of communicators you can use in your office?

We will use normally either Teams or Skype for business as an office communicator.

Do you have any knowledge about Informatica Cloud Architecture?

Yes, i have knowledge on Informatica Cloud Architecture.

In last three years, you work with only one project or?

Based on your resume, tell that you have worked on 1 project or 2 projects.

What are the DB's you use? and which version you use?

We were using oracle 19c, SQL Server 2019 and snowflake cloud database in out project.

Which Informatica IICS transformations you can use daily scenarios? and is there any difference in last project?

I have worked on the below Informatica IICS transformations on daily basis.

Source, Filter, Lookup, Router, Exp, Aggregator, Sorter, Rank, Joiner and union, etc.

In the current project i have used two new transformations like Hierarchy Builder and Hierarchy parser as we deal with JSON files.

Are you flexible with SQL joins? If, explain in detail?

Yes, i am comfortable in working on all types of joins supported by Oracle.

Read the joins in oracle interview questions in my website.

How many joins you can use in real time scenario and explain about cross join?

In Realtime, we mostly used Equi join, left outer join and right outer join to join the sources in IICS mapping. Also, I have used these joins in SQL override query in Source transformation.

Read the joins in oracle interview questions in my website.

Have you schedule any jobs in Informatica IICS and explain it?

I have used Informatica IICS schedular to schedule mapping tasks or taskflows in IICS. We can schedule mapping task while we creating a task under Schedule tab in IICS.

To Scheule the taskflow perform the below steps.

  • Navigate to Data Integration > Explore
  • Select the taskflow you want to schedule from its Project/Folder.
  • Either right click on the selected taskflow or click on the Action menu (three dots) next to the taskflow.
  • Select the Schedule option.

Do you have any knowledge on coding languages like python or java.! or you are pure in these informatica?

Yes, basically I am an Informatica ETL developer. I do not have any knowledge on coding languages like python or java.

But if give me an opportunity, then i am happy learn and work on python.

Leave a comment

Subscribe for material notification

Fill this form to get notify when we post new study materials on Raj Informatica.

Post Notification
Table of Contents

Recent Comments

  • T PUNDALIK 10 November 2023
    Thank you Raj sir nice explanation no one can have this much patience to
  • Sri Lalitha 6 November 2023
    Thank you for sharing your knowledge sir, very helpful to face the interview.
  • jyothi 6 November 2023
    hello sir. thank you for this understanding material like notes
  • ramu 6 November 2023
    good understanding sir
  • veena 6 November 2023
    Hi sir, this notes has clearily explained the what is iics, and difference between
  • durgaashok 6 November 2023
    Good notes and easy
  • Gouda Anusha 6 November 2023
    Hey Sir, I have read all oracle commands and understood very well and its clear
  • srinivas 6 November 2023
    Good content and notes
  • Gouda Anusha 6 November 2023
    Hey Sir, I have read all oracle commands and understood very well and its clear
  • Sravanajyothi 6 November 2023
    Hi Sir, Thank you for all information provided about the Expression transformation which is very
  • Lokesh 6 November 2023
    Good Stuff for Interview preparation process
  • lalitha 5 November 2023
    Hello Raj sir..thank you for your Excellent Training and Motivating every student to get a
Back to Top
Product has been added to your cart

Continue Reading Informatica Cloud IICS Interview Questions Set-06

Fill out this form to explore all our interview question sets.

Question-Popup

Instructor-Led IT Software Training

Get your dream IT job at top MNCs in just 45 days!

Interested to join? fill this form👇🏻 we'll contact you!

Contact Form