Explore topic-wise InterviewSolutions in .

This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.

1.

What is the multicast Transformation in SSIS?

Answer»

In SSIS, the Multicast transform can help you to send a single data INPUT to multiple output paths in easy steps. This transformation can be used to send a route in various destinations that have been SLICED in different ways.

Note: SSIS was first released back in 2005, and the latest RELEASE was in 2016, which was focused on helping users deploy entire packages easily along with added new cloud and SIGNIFICANT data sources. BROWSE through our comprehensive list of SSIS questions and also download it as a PDF for viewing the answers later on for offline viewing.

2.

What kind of containers can you use with SSIS packages?

Answer»

There are three TYPES of CONTAINERS that can be USED with packages in SSIS:

  • Sequences
  • For LOOP
  • For Each Loop
3.

Differences between SSIS and Informatica?

Answer»
SSISInformatica
It is highly secure.This is also highly secure.
This is easy to USE.This is easy to use. This is a bit difficult and complex to use.
The IMPLEMENTATION of SSIS is COMPARATIVELY easy.The implementation of Informatica is comparatively difficult.
It has no SaaS sources.It has more than 80 SaaS sources.
It has an INCREMENTAL database REPLICATION based on a custom SELECT query.It has an incremental database replication based on
It does not support Auto DocumentationIt supports Auto Documentation.
It is open-source; i.e., it does not cost any money.It is a premium software and costs money.
4.

What’s the data flow engine?

Answer»

The Data Flow Engine in SSIS is responsible for managing the data flow tasks within a package. The main reason BEHIND this is that the job is specialized to move data between different sources, destinations, and it can contain additional components.

Note: SSIS is actually an upgrade of the Data TRANSFORMATION SERVICES (DTS), an old data transformation software SOLUTION that was included with the SQL Server. Have a look at some of the ssis interview questions for experienced to get an in-depth view of this efficient tool.

5.

What is the Precedence Constraint in SSIS?

Answer»

In SSIS, the Precedence Constraints are basically the green, RED, and GREY connectors PRESENT in the Control Flow. These are the ones that link the tasks together, and they can also be used to manage the workflow of a package while handling ERROR CONDITIONS.

6.

Name different types of connections or files that support SSIS?

Answer»

Here are the DIFFERENT TYPES of file or connections that are supported by SSIS:

  • Excel
  • XML
  • .net SQLClient
  • OLEDB
  • ODBC
  • Flat File
7.

What is the Manifest file in SSIS?

Answer»

In SSIS, when the package is being transferred using the WIZARD on the FILE system and through the SQL server, the process is known as the Manifest file.

Note: Did you know? SSIS is USED in BI and Data Analytics to help users clean and standardize data to help them in further decision making and analytics. Read our list of ssis interview questions to learn more about this versatile tool.

8.

How many types of variables are there in SSIS?

Answer»

There are broadly two DIFFERENT types of variables in SSIS. They are:

  • System Defined: SSIS provides a SET of system variables to store the information regarding running packages and objects. They are generally used in expressions and PROPERTY expressions to customize containers, event HANDLERS, packages, and tasks.
  • User-Defined: These types of variables can be configured by the user in a way that its value can be updated at the run time, or the value can be ASSIGNED by the user itself at the time of creation.
9.

What types of data viewing options are there in SSIS?

Answer»

There are FOUR types of data VIEWING OPTIONS in SSIS. They are:

  • Grid View
  • Column View
  • Histogram View
  • Scatter Plot View
10.

Explain solution Explorer in SSIS?

Answer»

The SOLUTION EXPLORER window is the one where you can FIND all your created SSIS packages, project connection managers, project PARAMETERS, and any other miscellaneous files needed for the project, such as INSTALLATION documents.

11.

How do I force a fail inside of a SQL statement?

Answer»

In SSIS, tasks fail when there is an error. So, if your Execute SQL Task has a statement like the FOLLOWING, you should be able to FORCE a fail.

Example

declare @count int
select @count = select count(*) from my_table
if @count < 1000
begin
    raiserror(‘Too few rows in my_table’,16,1)
end
ELSE
begin
    — PROCESS your table here
end