This topic has not yet been rated - Rate this topic

catalog.set_execution_property_override_value

SQL Server 2012

Sets the value of a property for an instance of execution in the Integration Services catalog.


          
set_execution_property_override_value [ @execution_id = execution_id
    , [ @property_path = ] property_path
    , [ @property_value = ] property_value
    , [ @sensitive = ] sensitive

        
[ @execution_id = ] execution_id

The unique identifier for the instance of execution. The execution_id is bigint.

[ @property_path = ] property_path

The path to the property in the package. The property_path is nvarchar(4000).

[ @property_value = ] property_value

The override value to assign to the property. The property_value is nvarchar(max).

[ @sensitive = ] sensitive

When the value is 1, the property is sensitive and is encrypted when it is stored. When the value is 0, the property is not sensitive and the value is stored in plaintext. The sensitive argument is bit.

This procedure performs the same function as the Property overrides section in the Advanced tab of the Execute Package dialog. The path to the property is derived from the Package Path property of the package task.

0 (success)

The following list describes some conditions that may raise an error or warning:

  • The user does not have the appropriate permissions

  • The execution identifier is not valid

  • The property path is not valid

  • The data type of the property value does not match the data type of the property

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.