Skip to content

Commit 5899651

Browse files
committed
Refresh validate SSIS packages article and fix table
1 parent 0a0d4f6 commit 5899651

1 file changed

Lines changed: 36 additions & 37 deletions

File tree

Lines changed: 36 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,66 +1,64 @@
11
---
2-
title: "Validate SSIS packages deployed to Azure | Microsoft Docs"
2+
title: "Validate SSIS packages deployed to Azure"
33
description: Learn how the SSIS Package Deployment Wizard checks packages for known issues that may prevent the packages from running as expected in Azure.
4-
ms.date: "11/27/2017"
5-
ms.topic: conceptual
6-
ms.prod: sql
7-
ms.prod_service: "integration-services"
8-
ms.custom: ""
9-
ms.technology: integration-services
104
author: swinarko
115
ms.author: sawinark
12-
ms.reviewer: maghan
6+
ms.reviewer: maghan, randolphwest
7+
ms.date: 11/03/2022
8+
ms.prod: sql
9+
ms.technology: integration-services
10+
ms.topic: conceptual
1311
---
1412
# Validate SQL Server Integration Services (SSIS) packages deployed to Azure
1513

1614
[!INCLUDE[sqlserver-ssis](../../includes/applies-to-version/sqlserver-ssis.md)]
1715

18-
19-
2016
When you deploy a SQL Server Integration Services (SSIS) project to the SSIS Catalog (SSISDB) on an Azure server, the Package Deployment Wizard adds an additional validation step after the **Review** page. This validation step checks the packages in the project for known issues that may prevent the packages from running as expected in the Azure SSIS Integration Runtime. Then the wizard displays any applicable warnings on the **Validate** page.
2117

22-
> [!IMPORTANT]
18+
> [!IMPORTANT]
2319
> The validation described in this article occurs when you deploy a project with SQL Server Data Tools (SSDT) version 17.4 or later. To get the latest version of SSDT, see [Download SQL Server Data Tools (SSDT)](../../ssdt/download-sql-server-data-tools-ssdt.md).
2420
2521
For more info about the Package Deployment Wizard, see [Deploy Integration Services (SSIS) Projects and Packages](../packages/deploy-integration-services-ssis-projects-and-packages.md).
2622

2723
## Validate connection managers
2824

2925
The wizard checks certain connection managers for the following issues, which may cause the connection to fail:
26+
3027
- **Windows authentication**. If a connection string uses Windows authentication, validation raises a warning. Windows authentication requires additional configuration steps. For more info, see [Connect to data and file shares with Windows Authentication](/azure/data-factory/ssis-azure-connect-with-windows-auth).
3128
- **File path**. If a connection string contains a hard-coded local file path like `C:\\...`, validation raises a warning. Packages that contain an absolute path may fail.
3229
- **UNC path**. If a connection string contains a UNC path, validation raises a warning. Packages that contain a UNC path may fail, typically because a UNC path requires Windows authentication to access.
3330
- **Host name**. If a server property contains host name instead of IP address, validation raises a warning. Packages that contain host name may fail, typically because the Azure virtual network requires the correct DNS configuration to support DNS name resolution.
34-
- **Provider or driver**. If a provider or driver is not supported, validation raises a warning. Only a small number of built-in providers and drivers are supported at this time.
31+
- **Provider or driver**. If a provider or driver isn't supported, validation raises a warning. Only a few built-in providers and drivers are supported at this time.
3532

3633
The wizard does the following validation checks for the connection managers in the list.
3734

38-
| Connection Manager | Windows authentication | File path | UNC path | Host name | Provider or driver |
39-
|--------------------|----------|-----------|-----|-----------|-------------------|
40-
| Ado | ✓ | | | ✓ | ✓ |
41-
| AdoNet | ✓ | | | ✓ | ✓ |
42-
| Cache | | ✓ | ✓ | | |
43-
| Excel | | ✓ | ✓ | | |
44-
| File | | ✓ | ✓ | | |
45-
| FlatFile | | ✓ | ✓ | | |
46-
| Ftp | | | | ✓ | |
47-
| MsOLAP100 | | | | ✓ | ✓ |
48-
| MultiFile | | ✓ | ✓ | | |
49-
| MultiFlatFile | | ✓ | ✓ | | |
50-
| OData | ✓ | | | ✓ | |
51-
| Odbc | ✓ | | | ✓ | ✓ |
52-
| OleDb | ✓ | | | ✓ | ✓ |
53-
| SmoServer | ✓ | | | ✓ | |
54-
| Smtp | ✓ | | | ✓ | |
55-
| SqlMobile | | ✓ | ✓ | | |
56-
| Wmi | ✓ | | | | |
35+
| Connection manager | Windows authentication | File path | UNC path | Host name | Provider or driver |
36+
| :--- | :---: | :---: | :---: | :---: | :---: |
37+
| Ado | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: | | | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: |
38+
| AdoNet | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: | | | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: |
39+
| Cache | | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: | | |
40+
| Excel | | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: | | |
41+
| File | | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: | | |
42+
| FlatFile | | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: | | |
43+
| Ftp | | | | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: | |
44+
| MsOLAP100 | | | | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: |
45+
| MultiFile | | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: | | |
46+
| MultiFlatFile | | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: | | |
47+
| OData | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: | | | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: | |
48+
| Odbc | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: | | | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: |
49+
| OleDb | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: | | | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: |
50+
| SmoServer | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: | | | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: | |
51+
| Smtp | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: | | | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: | |
52+
| SqlMobile | | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: | | |
53+
| Wmi | :::image type="content" source="../../includes/media/yes-icon.svg" border="false" alt-text="Yes"::: | | | | |
5754

5855
## Validate sources and destinations
59-
The following third-party sources and destinations are not supported:
6056

61-
- Oracle Source and Destination by Attunity
62-
- Teradata Source and Destination by Attunity
63-
- SAP BW Source and Destination
57+
The following third-party sources and destinations aren't supported:
58+
59+
- Oracle Source and Destination by Attunity
60+
- Teradata Source and Destination by Attunity
61+
- SAP BW Source and Destination
6462

6563
## Validate tasks and components
6664

@@ -74,7 +72,8 @@ Validation raises a warning if a package contains a script task or a script comp
7472

7573
### Other components
7674

77-
The Orc format is not supported in the HDFS Destination and the Azure Data Lake Store Destination.
75+
The Orc format isn't supported in the HDFS Destination and the Azure Data Lake Store Destination.
7876

7977
## Next steps
80-
To learn how to schedule package execution on Azure, see [Schedule SSIS packages in Azure](ssis-azure-schedule-packages.md).
78+
79+
- [Schedule SSIS packages in Azure](ssis-azure-schedule-packages.md).

0 commit comments

Comments
 (0)