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
Copy file name to clipboardExpand all lines: articles/data-factory/create-azure-ssis-integration-runtime.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ When you provision an instance of Azure-SSIS IR, the Azure Feature Pack for SSIS
44
44
-**Azure SQL Database server/Managed Instance (Preview)**. If you don't already have a database server, create one in the Azure portal before you get started. This server hosts the SSIS Catalog database (SSISDB). We recommend that you create the database server in the same Azure region as the integration runtime. This configuration lets the integration runtime write execution logs to SSISDB without crossing Azure regions. Based on the selected database server, SSISDB can be created on your behalf as a standalone database, part of an Elastic Pool, or in a Managed Instance (Preview) and accessible in public network or by joining a virtual network (VNet). For a list of supported pricing tiers for Azure SQL Database, see [SQL Database resource limits](../sql-database/sql-database-resource-limits.md).
45
45
46
46
Confirm that your Azure SQL Database server/Managed Instance (Preview) does not have an SSIS Catalog (SSIDB database). The provisioning of Azure-SSIS IR does not support using an existing SSIS Catalog.
47
-
-**Classic/Azure Resource Manager (ARM) VNet (optional)**. You must have an Azure VNet if at least one of the following conditions is true:
47
+
-**Classic/Azure Resource Manager VNet (optional)**. You must have an Azure VNet if at least one of the following conditions is true:
48
48
- You are hosting the SSIS Catalog database in Azure SQL Database with VNet service endpoints/Managed Instance (Preview) that is inside a VNet.
49
49
- You want to connect to on-premises data stores from SSIS packages running on an Azure-SSIS integration runtime.
50
50
-**Azure PowerShell**. Follow the instructions in [How to install and configure Azure PowerShell](/powershell/azure/install-azurerm-ps), if you use PowerShell to run a script to provision Azure-SSIS integration runtime that runs SSIS packages in the cloud.
@@ -148,7 +148,7 @@ In this section, you use the Azure portal, specifically the Data Factory UI, to
148
148
149
149
b. For **Location**, the same location of your integration runtime is selected.
150
150
151
-
b. For **Type**, select the type of your VNet: Classic or Azure Resource Manager (ARM). We recommend that you select ARM VNet, since Classic VNet will be deprecated soon.
151
+
b. For **Type**, select the type of your VNet: Classic or Azure Resource Manager. We recommend that you select Azure Resource Manager VNet, since Classic VNet will be deprecated soon.
152
152
153
153
c. For **VNet Name**, select the name of your VNet. This should be the same VNet used for Azure SQL Database with VNet service endpoints/Managed Instance (Preview) to host SSISDB and or the one connected to your on-premises network.
154
154
@@ -210,8 +210,8 @@ $AzureSSISLicenseType = "" # LicenseIncluded by default, while BasePrice lets yo
210
210
$AzureSSISMaxParallelExecutionsPerNode = 8
211
211
# Custom setup info
212
212
$SetupScriptContainerSasUri = "" # OPTIONAL to provide SAS URI of blob container where your custom setup script and its associated files are stored
213
-
# VNet info: Classic or Azure Resource Manager (ARM)
214
-
$VnetId = “[your VNet resource ID or leave it empty]" # REQUIRED if you use Azure SQL Database with VNet service endpoints/Managed Instance (Preview)/on-premises data, ARM VNet is recommended, Classic VNet will be deprecated soon
213
+
# VNet info: Classic or Azure Resource Manager
214
+
$VnetId = “[your VNet resource ID or leave it empty]" # REQUIRED if you use Azure SQL Database with VNet service endpoints/Managed Instance (Preview)/on-premises data, Azure Resource Manager VNet is recommended, Classic VNet will be deprecated soon
215
215
$SubnetName = “[your subnet name or leave it empty]" # WARNING: Please use a different subnet than the one used for your Managed Instance (Preview)
216
216
217
217
### SSISDB info
@@ -379,8 +379,8 @@ $AzureSSISLicenseType = "" # LicenseIncluded by default, while BasePrice lets yo
379
379
$AzureSSISMaxParallelExecutionsPerNode = 8
380
380
# Custom setup info
381
381
$SetupScriptContainerSasUri = "" # OPTIONAL to provide SAS URI of blob container where your custom setup script and its associated files are stored
382
-
# VNet info: Classic or Azure Resource Manager (ARM)
383
-
$VnetId = “[your VNet resource ID or leave it empty]" # REQUIRED if you use Azure SQL Database with VNet service endpoints/Managed Instance (Preview)/on-premises data, ARM VNet is recommended, Classic VNet will be deprecated soon
382
+
# VNet info: Classic or Azure Resource Manager
383
+
$VnetId = “[your VNet resource ID or leave it empty]" # REQUIRED if you use Azure SQL Database with VNet service endpoints/Managed Instance (Preview)/on-premises data, Azure Resource Manager VNet is recommended, Classic VNet will be deprecated soon
384
384
$SubnetName = “[your subnet name or leave it empty]" # WARNING: Please use a different subnet than the one used for your Managed Instance (Preview)
write-host("If any cmdlet is unsuccessful, please consider using -Debug option for diagnostics.")
481
481
```
482
482
483
-
## Azure Resource Manager (ARM) template
484
-
In this section, you use ARM template to create Azure-SSIS integration runtime. Here is a sample walkthrough:
483
+
## Azure Resource Manager template
484
+
In this section, you use the Azure Resource Manager template to create Azure-SSIS integration runtime. Here is a sample walkthrough:
485
485
486
-
1. Create a JSON file with the following ARM template. Replace values in the angled brackets (place holders) with your own values.
486
+
1. Create a JSON file with the following Azure Resource Manager template. Replace values in the angled brackets (place holders) with your own values.
487
487
488
488
```json
489
489
{
@@ -529,7 +529,7 @@ In this section, you use ARM template to create Azure-SSIS integration runtime.
529
529
}
530
530
```
531
531
532
-
2. To deploy ARM template, run New-AzureRmResourceGroupDeployment command as shown in the following example, where ADFTutorialResourceGroup is the name of your resource group and ADFTutorialARM.json is the file that contains JSON definition for your data factory and Azure-SSIS IR.
532
+
2. To deploy the Azure Resource Manager template, run New-AzureRmResourceGroupDeployment command as shown in the following example, where ADFTutorialResourceGroup is the name of your resource group and ADFTutorialARM.json is the file that contains JSON definition for your data factory and Azure-SSIS IR.
0 commit comments