title | description | author | ms.author | ms.date | ms.service | ms.subservice | ms.topic |
---|---|---|---|---|---|---|---|
catalog.set_execution_property_override_value |
catalog.set_execution_property_override_value |
chugugrace |
chugu |
03/04/2017 |
sql |
integration-services |
language-reference |
[!INCLUDEsqlserver-ssis]
[!INCLUDE SQL Server]
Sets the value of a property for an instance of execution in the [!INCLUDEssISnoversion] catalog.
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)
None
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