Skip to content

Commit dc91d07

Browse files
authored
Merge pull request MicrosoftDocs#1769 from pkral/patch-3
Fix syntax guide
2 parents 46c7b77 + 0d7e66d commit dc91d07

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/integration-services/system-stored-procedures/catalog-validate-package-ssisdb-database.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ catalog.validate_package [ @folder_name = ] folder_name
2828
, [ @package_name = ] package_name
2929
, [ @validation_id = ] validation_id OUTPUT
3030
[ , [ @use32bitruntime = ] use32bitruntime ]
31-
[ , [ @target_environment = ] target_environment ]
31+
[ , [ @environment_scope = ] environment_scope ]
3232
[ , [ @reference_id = ] reference_id ]
3333
```
3434

@@ -49,7 +49,7 @@ catalog.validate_package [ @folder_name = ] folder_name
4949
Indicates if the 32-bit runtime should be used to run the package on a 64-bit operating system. Use the value of `1` to execute the package with the 32-bit runtime when running on a 64-bit operating system. Use the value of `0` to execute the package with the 64-bit runtime when running on a 64-bit operating system. This parameter is optional. The *use32bitruntime* is **bit**.
5050

5151
[ @environment_scope = ] *environment_scope*
52-
Indicates the environment references that are considered by the validation. When the value is `A`, all environment references associated with the project are included in the validation. When the value is `S`, only a single environment reference is included. When the value is `D`, no environment references are included and each parameter must have a literal default value in order to pass validation. This parameter is optional. The character `D` is used by default. The *environment_scope* is **Char(1)**.
52+
Indicates the environment references that are considered by the validation. When the value is `A`, all environment references associated with the project are included in the validation. When the value is `S`, only a single environment reference is included. When the value is `D`, no environment references are included and each parameter must have a literal default value in order to pass validation. This parameter is optional. The character `D` is used by default. The *environment_scope* is **char(1)**.
5353

5454
[ @reference_id = ] *reference_id*
5555
The unique ID of the environment reference. This parameter is required only when a single environment reference is included in the validation, when *environment_scope* is `S`. The *reference_id* is **bigint**.

0 commit comments

Comments
 (0)