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: docs/integration-services/ssis-quickstart-deploy-powershell.md
+31-1Lines changed: 31 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,13 +31,43 @@ You cannot use the information in this quickstart to deploy an SSIS package to S
31
31
32
32
To deploy the project to Azure SQL Database, get the connection information you need to connect to the SSIS Catalog database (SSISDB). You need the fully qualified server name and login information in the procedures that follow.
33
33
34
-
1.Log in to the [Azure portal](https://portal.azure.com/).
34
+
1.Sign in to the [Azure portal](https://portal.azure.com/).
35
35
2. Select **SQL Databases** from the left-hand menu, and then select the SSISDB database on the **SQL databases** page.
36
36
3. On the **Overview** page for your database, review the fully qualified server name. To see the **Click to copy** option, hover over the server name.
37
37
4. If you forget your Azure SQL Database server login information, navigate to the SQL Database server page to view the server admin name. You can reset the password if necessary.
38
38
5. Click **Show database connection strings**.
39
39
6. Review the complete **ADO.NET** connection string.
40
40
41
+
## SSIS PowerShell Provider
42
+
Provide appropriate values for the variables at the top of the following script, and then run the script to deploy the SSIS project.
43
+
44
+
> [!NOTE]
45
+
> The following example uses Windows Authentication to deploy to a SQL Server on premises. Use the `New-PSDive` cmdlet to establish a connection using SQL Server authentication. If you're connecting to an Azure SQL Database server, you can't use Windows authentication.
Copy file name to clipboardExpand all lines: docs/integration-services/ssis-quickstart-run-powershell.md
+11-1Lines changed: 11 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,13 +31,23 @@ You cannot use the information in this quickstart to run an SSIS package on Linu
31
31
32
32
To run the package on Azure SQL Database, get the connection information you need to connect to the SSIS Catalog database (SSISDB). You need the fully qualified server name and login information in the procedures that follow.
33
33
34
-
1.Log in to the [Azure portal](https://portal.azure.com/).
34
+
1.Sign in to the [Azure portal](https://portal.azure.com/).
35
35
2. Select **SQL Databases** from the left-hand menu, and then select the SSISDB database on the **SQL databases** page.
36
36
3. On the **Overview** page for your database, review the fully qualified server name. To see the **Click to copy** option, hover over the server name.
37
37
4. If you forget your Azure SQL Database server login information, navigate to the SQL Database server page to view the server admin name. You can reset the password if necessary.
38
38
5. Click **Show database connection strings**.
39
39
6. Review the complete **ADO.NET** connection string.
40
40
41
+
## SSIS PowerShell Provider
42
+
You can use the SSIS PowerShell Provider to connect to an SSIS catalog and execute packages within it.
43
+
44
+
Below is a basic example of how to execute an SSIS package in a package catalog with the SSIS PowerShell Provider.
0 commit comments