saso70
Quiz by , created more than 1 year ago

Implementing a Data Warehouse with Microsoft SQL Server 2012

792
1
0
No tags specified
saso70
Created by saso70 about 10 years ago
Close

70-463

Question 1 of 86

5

Reporting from a Star schema is simpler than reporting from a normalized online
transactional processing (OLTP) schema. What are the reasons for wanting simpler
reporting? (Choose all that apply.)

Select one or more of the following:

  • A Star schema typically has fewer tables than a normalized schema. Therefore,
    queries are simpler because they require fewer joins.

  • Star schema has better support for numeric data types than a normalized rela-
    tional schema; therefore, it is easier to create aggregates.

  • There are specific Transact-SQL expressions that deal with Star schemas.

  • A Star schema is standardized and narrative; you can find the information you
    need for a report quickly.

Explanation

Question 2 of 86

5

You are creating a quick POC project. Which schema is the most suitable for this kind
of a project?

Select one of the following:

  • Star schema

  • Normalized schema

  • Snowflake schema

  • XML schema

Explanation

Question 3 of 86

5

A Star schema has two types of tables. What are those two types? (Choose all that
apply.)

Select one or more of the following:

  • Lookup tables

  • Dimensions

  • Measures

  • Fact tables

Explanation

Question 4 of 86

5

You implement a Type 2 solution for an SCD problem for a specific column. What do
you actually do when you get a changed value for the column from the source system?

Select one of the following:

  • Add a column for the previous value to the table. Move the current value of the
    updated column to the new column. Update the current value with the new value
    from the source system.

  • Insert a new row for the same dimension member with the new value for the
    updated column. Use a surrogate key, because the business key is now duplicated.
    Add a flag that denotes which row is current for a member.

  • Do nothing, because in a DW, you maintain history, you do not update dimen-
    sion data.

  • Update the value of the column just as it was updated in the source system.

Explanation

Question 5 of 86

5

Which kind of a column is not a part of a dimension?

Select one of the following:

  • Attribute

  • Measure

  • Key

  • Member property

  • Name

Explanation

Question 6 of 86

5

How can you spot natural hierarchies in a Snowflake schema?

Select one of the following:

  • You need to analyze the content of the attributes of each dimension.

  • Lookup tables for each dimension provide natural hierarchies.

  • A Snowflake schema does not support hierarchies.

  • You should convert the Snowflake schema to the Star schema, and then you would
    spot the natural hierarchies immediately.

Explanation

Question 7 of 86

5

Over which dimension can you not use the SUM aggregate function for semi-additive
measures?

Select one of the following:

  • Customer

  • Product

  • Date

  • Employee

Explanation

Question 8 of 86

5

Which measures would you expect to be non-additive? (Choose all that apply.)

Select one or more of the following:

  • Price

  • Debit

  • SalesAmount

  • DiscountPct

  • UnitBalance

Explanation

Question 9 of 86

5

Which kind of a column is not part of a fact table?

Select one of the following:

  • Lineage

  • Measure

  • Key

  • Member property

Explanation

Question 10 of 86

5

Which database objects and object properties can you use for autonumbering?
(Choose all that apply.)

Select one or more of the following:

  • IDENTITY property

  • SEQUENCE object

  • PRIMARY KEY constraint

  • CHECK constraint

Explanation

Question 11 of 86

5

What columns do you add to a table to support Type 2 SCD changes? (Choose all that
apply.)

Select one or more of the following:

  • Member properties

  • Current row flag

  • Lineage columns

  • Surrogate key

Explanation

Question 12 of 86

5

What is an inferred member?

Select one of the following:

  • A row in a fact table added during dimension load

  • A row with aggregated values

  • A row in a dimension added during fact table load

  • A computed column in a fact table

Explanation

Question 13 of 86

5

Which types of data compression are supported by SQL Server? (Choose all that apply.)

Select one or more of the following:

  • Bitmap

  • Unicode

  • Row

  • Page

Explanation

Question 14 of 86

5

Which operators can benefit from batch processing? (Choose all that apply.)

Select one or more of the following:

  • Hash Join

  • Merge Join

  • Scan

  • Nested Loops Join

  • Filter

Explanation

Question 15 of 86

5

Why would you use indexed views? (Choose all that apply.)

Select one or more of the following:

  • To speed up queries that aggregate data

  • To speed up data load

  • To speed up selective queries

  • To speed up queries that involve multiple joins

Explanation

Question 16 of 86

5

The database object that maps partitions of a table to filegroups is called a(n)

Select one of the following:

  • Aligned index

  • Partition function

  • Partition column

  • Partition scheme

Explanation

Question 17 of 86

5

If you want to switch content from a nonpartitioned table to a partition of a partitioned
table, what conditions must the nonpartitioned table meet? (Choose all that apply.)

Select one or more of the following:

  • It must have the same constraints as the partitioned table.

  • It must have the same compression as the partitioned table.

  • It must be in a special PartitionedTables schema.

  • It must have a check constraint on the partitioning column that guarantees that all
    of the data goes to exactly one partition of the partitioned table.

  • It must have the same indexes as the partitioned table.

Explanation

Question 18 of 86

5

Which of the following T-SQL functions is not very useful for capturing lineage
information?

Select one of the following:

  • APP_NAME()

  • USER_NAME()

  • DEVICE_STATUS()

  • SUSER_SNAME()

Explanation

Question 19 of 86

5

You need to move data from a production database into a testing database. You need
to extract the data from several objects in the source database, but your manager
has asked you to only copy about 10 percent of the rows from the largest production
tables. The testing database already exists, but without any tables. How would you ap-
proach this task?

Select one or more of the following:

  • Use the Import and Export Wizard, copy all tables from the source database to the
    empty destination database, and delete the excess rows from the largest tables.

  • Use the Import and Export Wizard multiple times—once for all the smaller tables,
    and once for each large table, using the Write A Query To Specify The Data To
    Transfer option to restrict the rows

  • Use the Import and Export Wizard, copy all tables from the source database to the
    empty destination database, and restrict the number of rows for each large table
    by using the Edit SQL option in the Column Mappings window

  • Use the Import and Export Wizard, configure it to copy all tables from the source
    database to the empty destination database, save the SSIS package, and then,
    before executing it, edit it by using SSDT to restrict the number of rows extracted
    from the large tables.

Explanation

Question 20 of 86

5

You need to move data from an operational database into a data warehouse for the
very first time. The data warehouse has already been set up, and it already contains
some reference data. You have just finished preparing views in the operational data-
base that correspond to the dimension and fact tables of the data warehouse. How
would you approach this task?

Select one or more of the following:

  • Use the Import and Export Wizard and copy data from the dimension and fact
    views in the operational database into the tables in the data warehouse, by using
    the Drop And Re-create The Destination Table option in the Column Mappings
    window for every non-empty destination table.

  • Use the Import and Export Wizard, configure it to copy data from the dimension
    and fact views in the operational database into the tables in the data warehouse,
    save the SSIS package, and then edit it by using SSDT to add appropriate data
    merging functionalities for all destination tables.

  • Use the Import and Export Wizard and copy data from the dimension and fact
    views in the operational database into the tables in the data warehouse, by using
    the Merge Data Into The Destination Table option in the Column Mappings win-
    dow for every non-empty destination table.

  • Use SSDT instead of the Import and Export Wizard, because the wizard lacks ap-
    propriate data transformation and merging capabilities

Explanation

Question 21 of 86

5

When SSIS packages are saved to DTSX files, what format is used to store the SSIS
package definitions?

Select one of the following:

  • They are stored as binary files.

  • They are stored as plain text files.

  • They are stored as XML files.

  • hey are stored as special Microsoft Word documents.

Explanation

Question 22 of 86

5

Which statements best describe SQL Server Development Tools (SSDT)? (Choose all
that apply.)

Select one of the following:

  • SSDT is an extension of the SQL Server Management Studio that can be used to
    create SSIS packages by means of a special wizard.

  • SSDT is a special edition of the SQL Server Management Studio, designed to pro-
    vide an improved user experience to developers who are not particularly familiar
    with database administration.

  • SSDT is a special edition of Visual Studio, distributed with SQL Server 2012, provid-
    ing a rich database development tool set.

  • SSDT is a new service in SQL Server 2012 that can be used to perform SQL Server
    maintenance tasks, such as data movements and similar data management pro-
    cesses.

Explanation

Question 23 of 86

5

Which of the following statements about simple and complex data movements are
true? (Choose all that apply.)

Select one or more of the following:

  • Simple data movements only have a single data source and a single data
    destination

  • Complex data movements require data to be transformed before it can be stored
    at the destination.

  • In simple data movements, data transformations are limited to data type
    conversion.

  • In complex data movements, additional programmatic logic is required to merge
    source data with destination data.

Explanation

Question 24 of 86

5

Which of the following statements are true? (Choose all that apply.)

Select one or more of the following:

  • An SSIS package can contain one or more SSDT solutions, each performing a
    specific data management operation.

  • An SSIS project can contain one or more SSIS packages.

  • An SSIS project can contain exactly one SSIS package.

  • SSIS packages contain programmatic logic used in data movements and data
    transformation operations.

Explanation

Question 25 of 86

5

The Execute SQL Task allows you to execute SQL statements and commands against
the data store. What tools do you have at your disposal when developing SSIS pack-
ages to develop and test a SQL command? Choose all that apply.

Select one or more of the following:

  • SQL Server Management Studio (SSMS)

  • SQL Server Data Tools (SSDT)

  • The Execute SQL Task Editor

  • SQL Server Enterprise Manager (SSEM)

Explanation

Question 26 of 86

5

You need to execute two data flow operations in parallel after an Execute SQL Task has
been completed. How can you achieve that? (Choose all that apply.)

Select one or more of the following:

  • There is no way for two data flow operations to be executed in parallel in the same
    SSIS package.

  • You can place both data flows inside the same data flow task and create a prece-
    dence constraint leading from the preceding Execute SQL Task to the data flow task.

  • You can create two separate data flow tasks and create two precedence constraints
    leading from the preceding Execute SQL Task to each of the two data flow tasks.

  • You can create two separate data flow tasks, place them inside a third data flow
    task, and create a precedence constraint leading from the preceding Execute SQL
    Task to the third data flow task.

Explanation

Question 27 of 86

5

Which precedence constraint can you use to allow Task B to execute after Task A even
if Task A has failed?

Select one of the following:

  • The failure precedence constraint, leading from Task A to Task B

  • The success precedence constraint, leading from Task A to Task B.

  • The completion precedence constraint, leading from Task A to Task B.

  • Use two precedence constraints—a success precedence constraint, and a failure
    precedence constraint, both leading from Task A to Task B

Explanation

Question 28 of 86

5

You need to extract data from delimited text files. What connection manager type
would you choose?

Select one of the following:

  • A Flat File connection manager

  • An OLE DB connection manager

  • An ADO.NET connection manager

  • A File connection manager

Explanation

Question 29 of 86

5

Some of the data your company processes is sent in from partners via email.
How would you configure an SMTP connection manager to extract files from email
messages?

Select one of the following:

  • In the SMTP connection manager, configure the OperationMode setting to Send
    And Receive.

  • It is not possible to use the SMTP connection manager in this way, because it can
    only be used by SSIS to send email messages.

  • The SMTP connection manager supports sending and receiving email messages by
    default, so no additional configuration is necessary.

  • It is not possible to use the SMTP connection manager for this; use the IMAP (In-
    ternet Message Access Protocol) connection manager instead.

Explanation

Question 30 of 86

5

You need to extract data from a table in a SQL Server 2012 database. What connection
manager types can you use? (Choose all that apply.)

Select one or more of the following:

  • An ODBC connection manager

  • An OLE DB connection manager

  • A File connection manager

  • An ADO.NET connection manager

Explanation

Question 31 of 86

5

In your SSIS solution, you need to load a large set of rows into the database as quickly
as possible. The rows are stored in a delimited text file, and only one source column
needs its data type converted from String (used by the source column) to Decimal
(used by the destination column). What control flow task would be most suitable for
this operation?

Select one of the following:

  • The File System task would be perfect in this case, because it can read data from
    files and can be configured to handle data type conversions.

  • The Bulk Insert task would be the most appropriate, because it is the quickest and
    can handle data type conversions.

  • The data flow task would have to be used, because the data needs to be trans-
    formed before it can be loaded into the table.

  • No single control flow task can be used for this operation, because the data needs
    to be extracted from the source file, transformed, and then loaded into the desti-
    nation table. At least three different tasks would have to be used—the Bulk Insert
    task to load the data into a staging database, a Data Conversion task to convert
    the data appropriately, and finally, an Execute SQL task to merge the transformed
    data with existing destination data.

Explanation

Question 32 of 86

5

A part of your data consolidation process involves extracting data from Excel work-
books. Occasionally, the data contains errors that cannot be corrected automatically.
How can you handle this problem by using SSIS?

Select one of the following:

  • Redirect the failed data flow task to an External Process task, open the problematic
    Excel file in Excel, and prompt the user to correct the file before continuing the
    data consolidation process.

  • Redirect the failed data flow task to a File System task that moves the erroneous
    file to a dedicated location where an information worker can correct it later.

  • If the error cannot be corrected automatically, there is no way for SSIS to continue
    with the automated data consolidation process.

  • None of the answers above are correct. Due to Excel’s strict data validation rules,
    an Excel file cannot ever contain erroneous data.

Explanation

Question 33 of 86

5

In your ETL process, a few values need to be retrieved from a database at run time,
based on another value available at run time, and they cannot be retrieved as part of
any data flow task. Which task can you use in this case?

Select one of the following:

  • The Execute T-SQL Statement task

  • The Execute SQL task

  • The Expression task

  • The Execute Process task

Explanation

Question 34 of 86

5

How is the order of execution, or the sequence of operations, defined in an SSIS
package?

Select one of the following:

  • The SSIS run time engine determines the order of execution automatically, based
    on the type of operations, the available software and hardware resources, and the
    size of data.

  • The sequence is defined by using precedence constraints.

  • The sequence is defined by using the Sequence container.

  • The sequence is defined at design time by using precedence constraints and
    Sequence containers, but at run time the SSIS engine executes the operations in
    the order set by the most appropriate execution plan for maximum performance.

Explanation

Question 35 of 86

5

How does the Failure constraint affect the execution order?

Select one of the following:

  • The following task will only execute after the preceding task has failed.

  • The following task will only execute if the preceding task has not failed.

  • The following task will never execute, because this constraint is only used at
    design time.

  • The following task will execute regardless of whether the preceding task has failed,
    but an error will be written to the SSIS log.

Explanation

Question 36 of 86

5

In your ETL process, there are three external processes that need to be executed in
sequence, but you do not want to stop execution if any of them fails. Can this be
achieved by using precedence constraints? If so, which precedence constraints can
be used?

Select one of the following:

  • No, this cannot be achieved just by using precedence constraints.

  • Yes, this can be achieved by using completion precedence constraints between the
    first and the second and between the second and the third Execute Process tasks,
    and by using a success precedence constraint between the third Execute Process
    task and the following task.

  • Yes, this can be achieved by using completion precedence constraints between
    the first and the second, between the second and the third, and between the third
    Execute Process task and the following task.

  • Yes, this can be achieved by using failure precedence constraints between the first
    and the second, and between the second and the third Execute Process tasks, and
    by using a completion precedence constraint between the third Execute Process
    task and the following task.

Explanation

Question 37 of 86

5

Which data flow source adapters can you use if you would like to read data from SQL
Server? (Choose all that apply.)

Select one or more of the following:

  • ADO NET source

  • Raw File source

  • OLE DB source

  • ODBC source

Explanation

Question 38 of 86

5

Which data flow destinations can you use if you would like to temporarily stage data to
a file system? (Choose all that apply.)

Select one or more of the following:

  • OLE DB destination

  • Flat File destination

  • Raw File destination

  • Recordset destination

Explanation

Question 39 of 86

5

Which statements are true regarding data source adapters? (Choose all that apply.)

Select one or more of the following:

  • You can change how source data is mapped to SSIS data types.

  • You can have only one data source adapter per data flow task.

  • You must always select all columns from the source adapter.

  • You can read data from an XML file by using SSIS.

Explanation

Question 40 of 86

5

Which transformation can you use if you would like to convert data from one data
type to another? (Choose all that apply.)

Select one or more of the following:

  • Audit

  • Derived Column

  • Data Conversion

  • Script Component

Explanation

Question 41 of 86

5

Which transformations are fully blocking? (Choose all that apply.)

Select one or more of the following:

  • Lookup transformation

  • Sort transformation

  • Merge Join transformation

  • Aggregate transformation

Explanation

Question 42 of 86

5

Which transformations are new in SQL Server 2012 SSIS? (Choose all that apply.)

Select one or more of the following:

  • CDC Splitter

  • Pivot

  • Fuzzy Lookup

  • DQS Cleansing

Explanation

Question 43 of 86

5

Which data flow transformation would you use if had to combine data from two different database tables that exist on two different servers? (Choose all that apply.)

Select one or more of the following:

  • Merge Join transformation

  • Union All transformation

  • Merge transformation

  • Lookup transformation

Explanation

Question 44 of 86

5

Suppose that you want to load the data from a flat file and write it into a SQL Server,
Excel, and Raw File transformation inside one data flow task. How many Data Source
adapters do you need? (Choose all that apply.)

Select one or more of the following:

  • 0

  • 1

  • 2

  • 3

Explanation

Question 45 of 86

5

Which sentence is true regarding Cache connection manager? (Choose all that apply.)

Select one or more of the following:

  • Cache can be reused by multiple Lookup transformations.

  • You cannot incrementally update the cache while the package is running.

  • The Cache connection manager can be set on a project level.

  • You can do lookups against other (non OLE-DB) sources.

Explanation

Question 46 of 86

5

In your SSIS package you need to retrieve a scalar value from a table in the destina-
tion database, to be used by multiple tasks. What is the most appropriate method to
achieve this?

Select one of the following:

  • Embed a subquery in every existing query used by the package, so that the database
    engine can prepare the most appropriate execution plan to retrieve it at run time

  • Create a variable and use an expression to retrieve the value from the database
    once, and then use it throughout the execution.

  • Create a variable and use the Execute SQL task to retrieve the value once, and then
    use it throughout the execution.

  • Create a variable and use the Expression task to retrieve the value from the data-
    base as many times as needed.

Explanation

Question 47 of 86

5

In your SSIS package, you created a package-scoped variable to hold a value that you
want to reuse throughout the package. Later you discover that this value must be set
differently in one container, but the original variable should not be affected. What can
you do?

Select one of the following:

  • Create a new package-scoped variable with a different name and reconfigure the
    tasks accordingly, to either use the new variable or the original one

  • Create a new container-scoped variable with a different name and reconfigure
    only the tasks that it contains to use the new variable.

  • Create a new container-scoped variable with the same name, and leave the tasks
    unchanged.

  • Use a package-scoped parameter, because this problem cannot be solved by using
    variables.

Explanation

Question 48 of 86

5

In your SSIS process, a specific property will be determined by the administrator in the
production environment. The value supplied by the administrator will be used in mul-
tiple properties and will have to be overridden automatically if certain conditions are
met at run time. What is the most appropriate method to achieve this in SSIS?

Select one of the following:

  • Create a parameter and use expressions to assign its value to the corresponding
    properties, but use an expression at the beginning of the execution to change the
    parameter value if needed.

  • Create a parameter, use an expression at the beginning of the execution to either
    assign its value to a variable or override the value if needed, and use expressions to
    assign the value of the variable to the properties.

  • Create a read/write variable, use expressions to assign its value to the appropriate
    properties, and assign the correct value to the variable via property paths at run
    time.

  • Create a parameter and use expressions to either assign its value to the property
    or override it if needed.

Explanation

Question 49 of 86

5

In your SSIS package, there are several data flow tasks, each importing data into the
destination database. You need to log the number of rows that have been inserted or
updated in each data flow. What options provided by SSIS can you use to accomplish
this? (Choose all that apply.)

Select one of the following:

  • You can use the Row Count task to count the rows passed through a data flow.

  • You can use the Row Count component to count the rows passed through a
    data flow.

  • You can store the values in variables before saving them to the log.

  • You can use an expression to calculate the total number of processed rows.

Explanation

Question 50 of 86

5

In your SSIS package, you need to set the properties of several tasks based on the in-
formation available about the run time environment. Each of the properties you need
to compute can be calculated by using a mathematical expression. What would be the
most appropriate method?

Select one or more of the following:

  • Use the Expression Builder to build and test the expression, and then copy it to all
    of the corresponding task definitions.

  • Place an Expression Task into the control flow, preceding each task whose proper-
    ties need to be determined dynamically

  • Use as many Expression tasks as necessary to compute as many variables as there
    are different calculations, and then use the variables to assign the values to the
    corresponding tasks.

  • Use a single Expression task and store all required computed values in a row set
    (Object) variable to be used in property expressions to configure the correspond-
    ing tasks.

Explanation

Question 51 of 86

5

In the control flow of your SSIS package, you need to add a data maintenance task that
will rebuild the indexes of your dimension tables after they have been populated suc-
cessfully. You have implemented each dimension table load in an individual data flow.
The Execute SQL task containing the index rebuild script must be executed after the
preceding data flow has completed successfully, but only on Saturdays. The name of
the current day is stored in a variable. Is it possible to achieve this in SSIS control flow?
If so, how?

Select one or more of the following:

  • No, this is not possible in the control flow because the conditional split transforma-
    tion is only available in a data flow.

  • Yes, it is possible to achieve this in the control flow, but only by using a Script task.

  • Yes, this can be achieved by using a success precedence constraint leading from
    the data flow task to the Execute SQL task, with a precedence constraint expression
    checking whether the value of the variable is Saturday.

  • Yes, this can be achieved by using a regular success precedence constraint leading
    from the data flow task to the Execute SQL task.

Explanation

Question 52 of 86

5

What methods does SSIS provide for configuring child packages from the master
package?

Select one of the following:

  • Project parameters

  • Global variables

  • Package parameters

  • Solution parameters

Explanation

Question 53 of 86

5

Expressions can be used in precedence constraints to… (one or more answers are
correct)

Select one or more of the following:

  • …replace constraints.

  • …resolve conflicts between multiple constraints.

  • …add conditions to constraints

  • …determine variables

Explanation

Question 54 of 86

5

Which of the following statements about master packages are true? (Choose all that
apply.)

Select one or more of the following:

  • Master packages are used to configure child packages.

  • Master packages are used to execute child packages.

  • Master packages prevent child packages from being executed directly.

  • Master packages are used to control the order in which child packages are
    executed.

Explanation

Question 55 of 86

5

1. Which functionality does the Slowly Changing Dimension transformation support?
(Choose all that apply.)

Select one or more of the following:

  • Type 1 SCD

  • Type 2 SCD

  • Type 3 SCD

  • Inferred members

Explanation

Question 56 of 86

5

Which transformations can you use to determine whether the values of specific col-
umns have changed between the source data and the destination table? (Choose all
that apply.)

Select one or more of the following:

  • Data Conversion

  • Derived Column

  • Conditional Split

  • Multicast

Explanation

Question 57 of 86

5

Which statement is true regarding the Slowly Changing Dimension transformation?
(Choose all that apply.)

Select one or more of the following:

  • The Slowly Changing Dimension transformation supports set-based updates.

  • The Slowly Changing Dimension transformation supports inferred members.

  • You can have multiple Slowly Changing Dimension transformations in one data flow

  • The Slowly Changing Dimension Wizard supports only connections with a SQL
    Server database.

Explanation

Question 58 of 86

5

Which process modes in a CDC Source can be used directly to load data without ap-
plying the additional ETL process of getting the current value of the row? (Choose all
that apply.)

Select one or more of the following:

  • Net

  • All

  • All with old value

  • Net with merge

Explanation

Question 59 of 86

5

Which method can you use to dynamically set SQL inside SSIS at run time if you are
using an OLE DB source adapter? (Choose all that apply.)

Select one or more of the following:

  • Use a stored procedure as a source

  • Use parameters inside the SQL statement

  • Use expressions

  • Use an SQL command from a variable.

Explanation

Question 60 of 86

5

Which data flow elements have an error flow? (Choose all that apply.)

Select one or more of the following:

  • The OLE DB Source adapter

  • The Union All transformation

  • The Merge transformation

  • The Lookup transformation

Explanation

Question 61 of 86

5

Which options are available for handling errors on the row level? (Choose all that apply.)

Select one or more of the following:

  • Ignore failure

  • Fail component

  • Redirect row

  • Delete row

Explanation

Question 62 of 86

5

Which data source adapters have an error flow? (Choose all that apply.)

Select one or more of the following:

  • OLE DB source

  • Raw File source

  • ODBC source

  • Excel source

Explanation

Question 63 of 86

5

Which task in the control flow supports transactions? (Choose all that apply.)

Select one or more of the following:

  • Data flow task

  • Execute SQL task

  • File System task

  • XML task

Explanation

Question 64 of 86

5

Which transaction isolation level does not lock the records being read? (Choose all that
apply.)

Select one or more of the following:

  • Serializable

  • Snapshot

  • Chaos

  • ReadUncommitted

Explanation

Question 65 of 86

5

Which T-SQL statements can you use to manually handle a transaction? (Choose all
that apply.)

Select one or more of the following:

  • BEGIN TRAN

  • ROLLBACK TRAN

  • END TRAN

  • COMMIT TRAN

Explanation

Question 66 of 86

5

Which properties do you need to set on the package level to enable checkpoints?
(Choose all that apply.)

Select one or more of the following:

  • CheckpointFileName

  • CheckpointUsage

  • SaveCheckpoints

  • FailPackageOnFailure

Explanation

Question 67 of 86

5

On which SSIS objects can you set checkpoints to be active? (Choose all that apply.)

Select one or more of the following:

  • Data flow task

  • Control flow tasks

  • Sequence container

  • Sort transformation

Explanation

Question 68 of 86

5

Which statements are correct regarding SSIS checkpoints? (Choose all that apply.)

Select one or more of the following:

  • You can have multiple checkpoint files per package.

  • If the data flow task fails, you can store rows with errors in the checkpoint file.

  • If the package is successful, the checkpoint file is deleted

  • If you set the CheckpointUsage property to Always, the checkpoint file must be
    present or the package will not start

Explanation

Question 69 of 86

5

Which components in SSIS can act as executable components that trigger an event?
(Choose all that apply.)

Select one or more of the following:

  • Sequence container

  • Package

  • Data flow task

  • Data flow transformation

Explanation

Question 70 of 86

5

Which event handler types can you use if you want to log all the package errors?
(Choose all that apply.)

Select one or more of the following:

  • OnPostExecute

  • OnError

  • OnWarning

  • OnTaskFailed

Explanation

Question 71 of 86

5

Which event handler types can you use if you want to log information before the task
starts in the package? (Choose all that apply.)

Select one of the following:

  • OnTaskFailed

  • OnProgress

  • OnPreExecute

  • OnWarning

Explanation

Question 72 of 86

5

1. Which parameter types are available in SSIS in SQL Server 2012? (Choose all that
apply.)

Select one or more of the following:

  • Project-level parameters

  • Solution-level parameters

  • Control flow–level parameters

  • Package parameters

Explanation

Question 73 of 86

5

Which properties can be set by using build configurations? (Choose all that apply.)

Select one or more of the following:

  • Parameter values

  • Variable values

  • Control flow task properties

  • The Deployment Server Name property

Explanation

Question 74 of 86

5

Which properties can be set by using property expressions? (Choose all that apply.)

Select one or more of the following:

  • SQL statement for the Execute SQL task

  • Variable values

  • Data flow task properties

  • The Lookup task cache mode property

Explanation

Question 75 of 86

5

Which configuration types can you use to store configuration values? (Choose all that
apply.)

Select one or more of the following:

  • XML Configuration File

  • SQL Server

  • Any relational database system

  • Registry entry

Explanation

Question 76 of 86

5

On which objects can you set dynamic properties by using package configurations?
(Choose all that apply.)

Select one or more of the following:

  • Parameters

  • Variables

  • Data flow transformations

  • The Sequence Container task

Explanation

Question 77 of 86

5

Which SSIS elements can be configured by using a package configuration? (Choose all
that apply.)

Select one or more of the following:

  • Connection properties

  • Package variable properties

  • Parameter properties

  • Package properties

Explanation

Question 78 of 86

5

Which statements about SSIS logging are correct? (Choose all that apply.)

Select one or more of the following:

  • Every task and every operation automatically reports every error to the output file
    by default.

  • SSIS logging can be configured for individual SSIS tasks or containers or at the
    package level

  • SSIS logging writes entries into the SQL Server Error Log

  • SSIS log entries are exposed to the environment using a variety of built-in log
    providers.

Explanation

Question 79 of 86

5

Which of the following SSIS properties can be logged? (Choose all that apply.)

Select one or more of the following:

  • The name of the control flow task

  • The name of the event

  • The name of the user who started the process

  • The name of the machine on which the event occurred

Explanation

Question 80 of 86

5

Which feature allows you to configure logging once on a particular task or container,
and then reuse the same settings on other tasks and/or containers?

Select one of the following:

  • A log template

  • A log configuration template

  • A log settings template

  • A package configuration template

Explanation

Question 81 of 86

5

What information can be added to the data flow buffer by using the Audit transforma-
tion? (Choose all that apply.)

Select one or more of the following:

  • The name of the event

  • The identifier of the event

  • The identifier of the task

  • The name of the machine

Explanation

Question 82 of 86

5

How can the Audit transformation be configured to provide additional system vari-
ables or user variables to the data flow?

Select one of the following:

  • The set of properties provided by the Audit transformation is fixed and cannot be
    extended.

  • The Audit transformation itself cannot be extended, but by using the Expression
    task, you can assign any value to an appropriate system variable used by the Audit
    transformation.

  • The Audit transformation can be edited by using the Advanced Editor, which pro-
    vides unlimited access to system and user variables, as well as the rest of the data
    flow columns.

  • The set of properties provided by the Audit transformation can be extended at
    design time by switching to advanced mode.

Explanation

Question 83 of 86

5

Which of the following pieces of information represent typical examples of audit data?
(Choose all that apply.)

Select one or more of the following:

  • The date and time that the row was added to the table

  • The date and time that the row was last modified

  • A value designating the success or failure of an SSIS process

  • The name of the SSIS task in which an error has occurred

Explanation

Question 84 of 86

5

What are SSIS package templates used for? (Choose all that apply.)

Select one or more of the following:

  • They can be used to develop new SSIS projects.

  • They can be used to preconfigure SSIS packages

  • They can be used to apply log configurations for SSIS objects.

  • They can be used to create SSIS packages.

Explanation

Question 85 of 86

5

What type is used for SSIS package template files?

Select one of the following:

  • The .dotx file type

  • The .dotsx file type

  • The .dtsx file type

  • The .xml file type

Explanation

Question 86 of 86

5

Which of the following statements about package templates are true? (Choose all
that apply.)

Select one or more of the following:

  • SSIS package templates can be used to reapply log settings to SSIS tasks and/or
    containers.

  • SSIS package templates can be used to reduce the time needed to develop an SSIS
    package.

  • SSIS package templates can be used to preconfigure SSIS operations.

  • SSIS package templates can speed up SSIS process execution.

Explanation