Skip to content

Commit 394f7f6

Browse files
authored
Merge pull request #21319 from MicrosoftDocs/FromPublicRepo
Confirm merge from FromPublicRepo to main to sync with https://github.com/MicrosoftDocs/sql-docs (branch live)
2 parents cd3f12c + cbb2ee9 commit 394f7f6

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

docs/integration-services/devops/ssis-devops-overview.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -166,13 +166,12 @@ SSIS Deploy task currently doesn't support the following scenarios:
166166
- Configuring the environment in the SSIS catalog.
167167
- Deploying ISPAC to Azure SQL Server or Azure SQL Managed Instance, which allow only multifactor authentication.
168168
- Deploying packages to MSDB or SSIS Package Store.
169-
- Uploading to an on-premises DevOps server might result in the error "The extension package size exceeds the maximum package size". To resolve the error, first complete the following steps. If the error persists, please contact Azure DevOps support.
170-
1. Get the publisher name of the extension you want to increase the size limit for. The publisher name typically is on the left side of the `.` character in the URL of the extension's item details page in Azure Marketplace. For example, if the extension’s item details page is `https://marketplace.visualstudio.com/items?itemName=tylermurry.pr-auto-comment`, the publisher name is `tylermurry`.
169+
- If you install the SSIS DevOps Tools extension in Azure DevOps Server, you might see the message "The extension package size exceeds the maximum package size." To resolve the issue, complete the following steps:
171170
1. Connect to the on-premises SQL Server instance and select the database **Gallery_Configuration**.
172-
1. Run this query by replacing `<publisherName>` with the publisher name from step 1:
173-
`INSERT INTO dbo.tbl_RegistryItems VALUES (1,'#\Configuration\Service\Gallery\LargeExtensionUpload\<publisherName>\','MaxPackageSizeMB\',50)`
174-
Change `50` to a higher number if the extension is larger than 50 MBs.
171+
1. Run the query `INSERT INTO dbo.tbl_RegistryItems VALUES (1,'#\Configuration\Service\Gallery\LargeExtensionUpload\SSIS\','MaxPackageSizeMB\',50)`. Change `50` to a higher number if the extension is larger than 50 MBs.
175172
1. After you run the query, restart Internet Information Services. Try again to upload the extension.
173+
1. If the error persists, please contact Azure DevOps support.
174+
176175

177176
## SSIS Deploy task version 1.*
178177

docs/integration-services/system-views/catalog-executions-ssisdb-database.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ ms.author: chugu
3535
|executed_as_sid|**varbinary(85)**|The SID of the user who started the instance of execution.|
3636
|executed_as_name|**nvarchar(128)**|The name of the database principal that was used to start the instance of execution.|
3737
|use32bitruntime|**bit**|Indicates if the 32-bit runtime is used to run the package on a 64-bit operating system. When the value is `1`, the execution is performed with the 32-bit runtime. When the value is `0`, the execution is performed with the 64-bit runtime.|
38+
|operation_type|**smallint**|The type of operation. The operation_type of 200 means create/start execution.|
39+
|created_time|**datetimeoffset**|The time when the instance was initiated. Keep in mind that there is a lag time between initiation and actual start time.|
3840
|object_type|**smallint**|The type of object. The object may be a project (`20`) or a package (`30`).|
3941
|object_id|**bigint**|The ID of the object affected by the operation.|
4042
|status|**int**|The status of the operation. The possible values are created (`1`), running (`2`), canceled (`3`), failed (`4`), pending (`5`), ended unexpectedly (`6`), succeeded (`7`), stopping (`8`), and completed (`9`).|

docs/integration-services/system-views/catalog-operations-ssisdb-database.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ ms.author: chugu
5151
|`2`|Retention window<br /><br /> (SQL Agent job)|**NULL**|**NULL**|
5252
|`3`|MaxProjectVersion<br /><br /> (SQL Agent job)|**NULL**|**NULL**|
5353
|`101`|**deploy_project**<br /><br /> (Stored procedure)|Project ID|Project name|
54+
|`102`|**get_project**<br /><br /> (Stored procedure)|Project ID|Project name|
5455
|`106`|**restore_project**<br /><br /> (Stored procedure)|Project ID|Project name|
5556
|`200`|**create_execution** and **start_execution**<br /><br /> (Stored procedures)|Project ID|**NULL**|
5657
|`202`|**stop_operation**<br /><br /> (Stored procedure)|Project ID|**NULL**|

0 commit comments

Comments
 (0)