catalog.get_parameter_values (SSISDB Database)
Resolves and retrieves the default parameter values from a project and corresponding packages in the Integration Services catalog.
Returns a table that has the following format:
|
Column name |
Data type |
Description |
|---|---|---|
|
object_type |
smallint |
The type of parameter. The value is 20 for a project parameter and the value is 30 for a package parameter. |
|
parameter_data_type |
nvarchar(128) |
The data type of the parameter. |
|
parameter_name |
sysname |
The name of the parameter. |
|
parameter_value |
sql_variant |
The value of the parameter. |
|
sensitive |
bit |
When the value is 1, the parameter value is sensitive. When the value is 0, the parameter value is not sensitive. |
|
required |
bit |
When the value is 1, the parameter value is required in order to start the execution. When the value is 0, the parameter value is not required to start the execution. |
|
value_set |
bit |
When the value is 1, the parameter value has been assigned. When the value is 0, the parameter value has not been assigned. |
Note
|
|---|
|
Literal values are displayed in plaintext. NULL is displayed in place of sensitive values. |

Note