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.)
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.)
Create Environment
Create Environment variable
Reference Environment
Change value of the project parameter to the Environment
Create Environment
Create Environment variable
Create Environment reference
In SQL Server Agent job, …
I agree with you t
Yes, that is the correct order
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
Ignore my last comment.
The second option looks more correct.
Create Environment
Create Environment variable
Create Environment reference
In SQL Server Agent job, …
In the SSIS catalog, create an Environment
In the EnvTest Environment…
In the project configuration…
In the SQL Agent job…