catalog.set_execution_property_override_value

Applies to: SQL Server SSIS Integration Runtime in Azure Data Factory

Applies to: SQL Server

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

Syntax

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

Arguments

[ @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.

Remarks

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.

Return Code Value

0 (success)

Result Sets

None

Errors and Warnings

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

See Also

catalog.set_execution_parameter_value (SSISDB Database)