PrepAway - Latest Free Exam Questions & Answers

Which four actions should you perform in sequence by using SQL Server Management Studio?

DRAG DROP
You are developing a SQL Server Integration Services (SSIS) project by using the Project
Deployment model.
The project contains many packages. It is deployed on a server named SQLTest1. The
project will be deployed to several servers that run SQL Server 2012.
The project accepts one required parameter. The data type of the parameter is a string.
A SQL Agent job is created that will call the Loading.dtsx package in the project. A job step
is created for the SSIS package.
The job must pass the value of an SSIS Environment Variable to the project parameter. The
value of the Environment Variable must be configured differently on each server that runs
SQL Server. The value of the Environment Variable must provide the server name to the
project parameter.
You need to configure SSIS on the SQLTest1 server to pass the Environment Variable to the
package.
Which four actions should you perform in sequence by using SQL Server Management
Studio?
(To answer, move the appropriate actions from the list of actions to the answer area and
arrange them in the correct order.)

PrepAway - Latest Free Exam Questions & Answers

Answer:

8 Comments on “Which four actions should you perform in sequence by using SQL Server Management Studio?

  1. Dim says:

    Please read the questions more carefully.
    The job and job step is already created.
    “You need to configure SSIS on the SQLTest1 server to pass the Environment Variable to the
    package.”

    Alter you take 4 actions (first option you listed) you can run the job with
    t-sql step also using sp’s.

    Declare @execution_id bigint
    EXEC [SSISDB].[catalog].[create_execution]
    @package_name=N’SSAS Cache Warming 1.dtsx’,
    @execution_id=@execution_id OUTPUT,
    @folder_name=N’70-463′,
    @project_name=N’CacheWarming’,
    @use32bitruntime=False, @reference_id=2
    Select @execution_id
    DECLARE @var0 smallint = 1
    EXEC [SSISDB].[catalog].[set_execution_parameter_value]
    @execution_id,
    @object_type=50,
    @parameter_name=N’LOGGING_LEVEL’,
    @parameter_value=@var0
    EXEC [SSISDB].[catalog].[start_execution] @execution_id
    GO




    0



    0

Leave a Reply