You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -47,8 +47,8 @@ In this step, you use ADF UI/app to create a pipeline. You add an Execute SSIS P
47
47
48
48
4. On the **Settings** tab for Execute SSIS Package activity, select an Azure-SSIS IR where you want to run your package. If your package uses Windows authentication to access data stores, e.g. SQL Servers/file shares on premises, Azure Files, etc., check the **Windows authentication** checkbox and enter the values for your package execution credentials (**Domain**/**Username**/**Password**). Alternatively, you can use secrets stored in your Azure Key Vault (AKV) as their values. To do so, click on the **AZURE KEY VAULT** checkbox next to the relevant credential, select/edit your existing AKV linked service or create a new one, and then select the secret name/version for your credential value. When you create/edit your AKV linked service, you can select/edit your existing AKV or create a new one, but please grant ADF managed identity access to your AKV if you have not done so already. You can also enter your secrets directly in the following format: `<AKV linked service name>/<secret name>/<secret version>`. If your package needs 32-bit runtime to run, check the **32-Bit runtime** checkbox.
49
49
50
-
For **Package location**, select **SSISDB**, **File System (Package)**, or **File System (Project)**. If you select **SSISDB** as your package location, which is automatically selected if your Azure-SSIS IR was provisioned with SSIS catalog (SSISDB) hosted by Azure SQL Database server/Managed Instance, you need to specify your package to run that has been deployed into SSISDB. If your Azure-SSIS IR is running and the **Manual entries** checkbox is unchecked, you can browse and select your existing folders/projects/packages/environments from SSISDB. Click the **Refresh** button to fetch your newly added folders/projects/packages/environments from SSISDB, so they are available for browsing and selection.
51
-
50
+
For **Package location**, select **SSISDB**, **File System (Package)**, or **File System (Project)**. If you select **SSISDB** as your package location, which is automatically selected if your Azure-SSIS IR was provisioned with SSIS catalog (SSISDB) hosted by Azure SQL Database server/Managed Instance, you need to specify your package to run that has been deployed into SSISDB. If your Azure-SSIS IR is running and the **Manual entries** checkbox is unchecked, you can browse and select your existing folders/projects/packages/environments from SSISDB. Click the **Refresh** button to fetch your newly added folders/projects/packages/environments from SSISDB, so they are available for browsing and selection. To browse/select the environments for your package executions, you must configure your projects beforehand to add those environments as references from the same folders under SSISDB. For more info, see [Creating/mapping SSIS environments](https://docs.microsoft.com/sql/integration-services/create-and-map-a-server-environment?view=sql-server-2014).
51
+
52
52
For **Logging level**, select a predefined scope of logging for your package execution. Check the **Customized** checkbox, if you want to enter your customized logging name instead.
53
53
54
54

@@ -156,42 +156,43 @@ In this step, you create a pipeline with an Execute SSIS Package activity. The a
156
156
1. Create a JSON file named **RunSSISPackagePipeline.json** in the **C:\ADF\RunSSISPackage** folder with content similar to the following example:
157
157
158
158
> [!IMPORTANT]
159
-
> Replace object names, descriptions, and paths, property and parameter values, passwords, and other variable values before saving the file.
159
+
> Replace object names/descriptions/paths, property/parameter values, passwords, and other variable values before saving the file.
160
160
161
161
```json
162
162
{
163
163
"name": "RunSSISPackagePipeline",
164
164
"properties": {
165
165
"activities": [{
166
-
"name": "mySSISActivity",
166
+
"name": "MySSISActivity",
167
167
"description": "My SSIS package/activity description",
To execute packages within projects stored in file systems/file shares/Azure Files, you can enter the values for your package location property as follows.
2. In Azure PowerShell, switch to the `C:\ADF\RunSSISPackage` folder.
266
347
267
348
3. To create the pipeline **RunSSISPackagePipeline**, run the **Set-AzDataFactoryV2Pipeline** cmdlet.
@@ -385,4 +466,4 @@ In the previous step, you ran the pipeline on-demand. You can also create a sche
385
466
386
467
## Next steps
387
468
See the following blog post:
388
-
-[Modernize and extend your ETL/ELT workflows with SSIS activities in ADF pipelines](https://blogs.msdn.microsoft.com/ssis/2018/05/23/modernize-and-extend-your-etlelt-workflows-with-ssis-activities-in-adf-pipelines/)
469
+
-[Modernize and extend your ETL/ELT workflows with SSIS activities in ADF pipelines](https://techcommunity.microsoft.com/t5/SQL-Server-Integration-Services/Modernize-and-Extend-Your-ETL-ELT-Workflows-with-SSIS-Activities/ba-p/388370)
0 commit comments