Microsoft Business Intelligence Interview Questions and Answers

Q : MSBI Characteristics
A :
Criteria Result

 

Analytics Dashboards, guided navigation and drill down
Type of Solution End-to-end Business solution with extended ETL
User-friendly Ease of installation, use, maintenance

Q : What are the Reporting Service Constituents in SSRS?
A :
A. Report Manager : A Web-based administration tool for managing the Report Server.
B. Report Server : Provides services for implementation and delivery of reports.
C. Report Designer : A place where we can create report.

Q : Define Query parameter in SSRS?
A : Query parameters is revealed in the query of the datasources that are to be included into the SQL script’s where clause of the SQL that can accept parameters. Query parameters begin with the symbol @.

Q : What do you understand by matrix in SSRS?
A : A matrix is a data region related to a report set. Matrix permits us to create crosstab reports with the report variables showing on rows and columns. It allows us to drag.

Q : Define report model project?
A : Report model project is used for creating Adhoc reporting. We can create the adhoc reports over report builder. Report model project can be created on bids or report server. This model can have simple view.

Q : What do you mean by sub reports and how we can create them?
A : A sub report is like any other reports which can be termed in main report and can be generate through main report. Parameters can be conceded from main report to sub report and basis of that report can be created.

Q : What do you understand by report server project?
A : Report Server Project comprises of RDL file and it need to be deployed on report server to view the report files to application and user. It is a solution where we can design our reports. We can add it by going into BIDS clicking on new item and then selecting reports server project. Once the solution is formed we can start forming reports.

Q : Explain report builder?
A : Report builder is used to create small reports and it is a define interface. We can’t change the report interface in report builder it pre designed. We can just drag columns in the report. It creates reports on database objects available with report model project.

Q : How to organise the Report?
A : Report can be organized in three ways :

  1. Using visual studio : In visual studio we can directly deploy the report through solution explorer by providing the report server URL in project properties at Target Server URL. This will organize entire project or single report as per our selection.
  2. Using report server : We can directly go to the report server and deploy the report by looking the report from the disk location on server.
  3. Creating the utility : SQL server provides the utility which can be used to create a modify utility for our report deployment in bulk.

Q : In which SQL Server type report builder introduced?
A : Report builder presented in SQL Server 2005. While creating or arranging report model project on report server we can get error or it might not get formed. For this we need to check whether the service pack 22 is installed or not.

Q : Define RS.exe utility?
A : Rs.exe utility is used for organizing the report on report server. It comes with the report server and can be modify accordingly.

Q : What is the name of reporting services config file and what it is used for?
A : Reporting service config file is used for report configuration details. It contains the report format and also the report import types. Report service config exist in ISS.

Q : Which language rdl files made of?
A : RDL files are printed in XML.

Q : What are the three different part of RDL file elaborate them?
A : In visual studio RDL files has three parts.

  1. Data : It covers the dataset on which we write the query. Data set is associated with data source.
  2. Design : In design we can design report. We can create tables and matrix reports. We Drag columns values from source.
  3. Preview : It ia used to check the preview after the report run.

Q : What do you understand by chart in report?
A : Chart reports are for graphical representation. We can get pie charts columns harts and various other options. 3d charts are also presented in reporting services.

Q : Name different types of data sources in SSRS?
A : SSRS use different data source. Some of them are listed below.

  • OLEDB.
  • SQL Server SAP Net weaver BI.
  • Oracle.
  • Report Server Model.
  • SQL Server Analysis Service OLEDB.
  • ODBC.
  • SAP Net weaver BI.
  • Hyperion.
  • Teradata.
  • XML

Q : Define Data Set in report?
A : Data set are the set of data which we want to show in report. Data creates on data source. Data source is the source of data from where we are receiving this data i.e. database server and database name joining string.

Q : What is the web service used for reporting services?
A : Reporting Service Web Service used in SSRS. By retrieving this web service we can access all report server section and also get the report organized on report server.

Q : How to enhance the custom code in Report?
A : To enhance the custom codes in report go to report tab on top then properties and there you will find the selections for custom code.

Q : Define cache in SSRS?
A : Report server can lay up a copy of processed report in a memory and return the copy when a user opens the report. This server memory is called as cache and the process is known as caching.

Q : Explain transfer SQL Server object task?
A : It allows us to allocate different SQL server objects between different instances of SQL Server.Object incomes from table, stored procedures, user defined functions etc.

Q : Elaborate Web service task in SSIS?
A :

  • First we configure HTTP Connection manager which will point to WSDL of a web service.
  • Web service task customs this HTTP Connection manager and let us invoke methods in it.
  • It return values of method value we can store it in some variables and can use as input for some other tasks.

Q : In SSIS is it conceivable to communicate with MSMQ?
A : Yes, it is possible for that we have Message Queue task. It contract us send messages to MSMQ and receive message from MSMQ.

Q : What is the advantage of using MSMQ?
A : MSMQ helps in communicating two applications with each other asynchronously. Specialty is two application may be built using dissimilar technology and it works even offline messaging. Sender will stock messages inside queue and reader reads it wherever required.

Q : What are the Different Lookup Cache Modes Available in SSIS?
A : There are basically 4 Cache Modes available in SSIS Lookup Transformation

  1. Full Cache Mode.
  2. Partial Cache Mode.
  3. No Cache Mode.
  4. Full Cache Mode

Q : Explain architecture of SSIS?
A : SSIS architecture involves four key parts :
a) Integration Services service : 
It monitors running Integration Services packages and accomplishes the storage of packages.
b) Integration Services object model :
It contains managed API for reading Integration Services tools, command-line utilities, and custom applications.c) Integration Services runtime and run-time executables :
It keeps the layout of packages, runs packages, and provides support for logging, breakpoints, configuration, connections, and transactions.
d) Data flow engine : 
It provides the in-memory buffers that move data from source to destination.

Q : Differentiate between SSRS 2005 and SSRS 2008
A : The major differences between SSRS 2005 and SSRS 2008 are as follows:
SSRS 2005 report server requires IIS, whereas SSRS 2008 comes with a build-in web server and hence does not require IIS.

Q : How we can do Logging in SSIS?
A : Logging Configuration provides an inbuilt feature which can log the detail of various events like onError, onWarning etc .

Q : How we can do Error Handling?
A : SSIS package contain mainly have two types of errors :
a) Procedure Error : It can be handled in Control flow bythe precedence control and redirecting the execution flow.
b) Data Error : it is handled in DATA FLOW TASK by redirecting the data flow using Error Output of a component.

Q : How can we organize a SSIS Package on production?
A : A)Through Manifest we can organize it :

  1. Create deployment utility by setting its properties as true .
  2. It will be formed in the bin folder of the solution once package is build.
  3. Copy all the files in the utility and use manifest file to display it on the Prod.

B) Using DtsExec.exe utility.

C)Import Package directly in MSDB from SSMS by logging in Integration Services.

Q : Define Execution Tree?
A : Execution trees demonstrate how package uses buffers and threads. At run time, the data flow engine breaks down Data Flow task operations into execution trees.

Q : How we can pass property value at Run time?
A : A property value like connection string for a Connection Manager can be passed to the pkg using package configurations.

Q : Differentiate between Unionall and Merge Join?
A : a) Merge transformation can take only two inputs whereas Union all can take more than two inputs.
b) Data has to be sorted before Merge Transformation whereas Union all doesn’t have any boundation like that.

Q : How we can restart package from previous failure point? Define Checkpoints and how they are implement in SSIS?
A : When a package is arranged to use checkpoints, material about package execution is written to a checkpoint file. When the failed package is rerun, the checkpoint file is used to restart the package from the point of failure. If the package runs effectively, the checkpoint file is deleted, and then re-created the next time that the package is run.

Q : Where do you store SSIS package in the SQL Server?
A : MSDB.sysdtspackages90 stores the original content .

Q : What are the three stages of Enterprise Reporting Life Cycle ?
A :
a. Management
b. Authoring
c. Access and Delivery

Q : What are the apparatuses included in SSRS?
A :

  1.  A Complete set of Tools that can be used to generate, succeed and view reports.
  2.  A Report Server component that hosts and processes reports in many formats. Output formats include HTML, PDF and more.
  3. An API that allows developers to mix or spread data and report processing in custom applications, or create custom tools to build and manage reports.

Q : What are the benefits of using embedded code in a report?
A : The benefits are:

  1. Reuseability of Code: function created in embedded code to achieve a logic can be then used in manifold expressions
  2.  Centralized code: it helps in better manageability of code.

Q : What important terms can be used in the reporting services?
A :

  1. Report definition: A report definition contains information about the query and layout for the report.
  2.  Report snapshot: A report snapshot is actually a report definition that contains a dataset instead of query instructions.
  3.  Rendered report: A fully processed report that contains both data and layout information, in a format suitable for viewing (such as HTML).
  4.  Parameterized report: A published report that accepts input values through parameters.
  5.  Shared data source: A predefined, standalone item that contains data source connection information.
  6.  Shared schedule: It is a predefined, standalone item that covers schedule information.
  7. Report-specific data source: Data source information which is defined within a report definition.
  8.  Report model: A semantic description of business data, used for ac hoc reports created in Report Builder.
  9. Linked report: It is a report that derives its definition through a link to another report.

Q : Which programming language can be used to code embedded functions in SSRS?
A : Visual Basic .NET Code is used to code embedded fuctions in SSRS.

Q : What are the Command Line Utilities available in Reporting Services?
A :

  • Rsconfig Utility (Rsconfig.exe): encrypts and stores connection and account values in the RSReportServer.config file.
  • RsKeymgmt Utility: it is used to Extracts, restores, creates, and deletes the symmetric key used to protect sensitive report server data against unauthorized access
  • RS Utility: this utility is mainly used to automate report server deployment.

Q : Differentiate between Tablular and Matrix report?
A :

  1. Tablular report: It is the most basic type of report. Each column corresponds to a column selected from the database.
  2.  Matrix report: A matrix report is a cross-tabulation of four groups of data:
    a. One group of data is displayed across the page.
    b. One group of data is displayed down the page.
    c. One group of data is the cross-product.
    d. One group of data is displayed as the “filler” of the cells.

Q : How we can know Report Execution History?
A : We can know Report Execution History as the execution log table in report server database contains all the logs from the last two months so we can see it from there.
Select-from reportserver.dbo.ExecutionLog

Q : How we can create Drill-through reports?
A : By Using Navigation property of a cell and scenery child report and its parameters in it we can create Drill-through reports.

Q : How to create Drill-Down reports?
A :

  1. By grouping data on essential fields
  2. Then toggle reflectivity based on the grouped filed

Q : How we can schedule a SSIS packages?
A : Using SQL Server Agent we can schedule a SSIS packages.

Q : Define Asynchronous transformation?
A : Asynchronous transformation have various Input and Output buffers and it is up to the component designer. It provide a column structure to the output buffer and hook up the data from the input.

Q : How we can do incremental load?
A : Accurate and fastest way to do incremental load is by using Timestamp column in source table and then storing last ETL timestamp.

Q : How we can handle Early Arriving Facts.
A : Early Arriving Facts sometime get unavoidable because delay or error in Dimension ETL or may be due to logic of ETL. To handle Early arriving Facts, we can create dummy Dimension with natural/business key and keep rest of the attributes as null or default.

Q : How we can achieve parallelism in SSIS?
A : Parallelism is achieved using MaxConcurrentExecutable stuff of the package. Its default is -1 and is calculated as number of computers + 2.

Q : Define SQL Server Reporting Services (SSRS)?
A : SQL Server Reporting Services is a server-based reporting platform that we can use to create and manage tabular, matrix, graphical, and free-form reports that contain data from relational and multidimensional data sources.

Comments are closed.