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/lift-shift/ssis-azure-deploy-run-monitor-tutorial.md
+16-1Lines changed: 16 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,15 @@ Also make sure that you have set up the SSISDB database and provisioned the Azur
25
25
> [!NOTE]
26
26
> Deployment to Azure only supports the project deployment model.
27
27
28
+
## For Azure SQL Database, get the connection info
29
+
30
+
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.
31
+
32
+
1. Log in to the [Azure portal](https://portal.azure.com/).
33
+
2. Select **SQL Databases** from the left-hand menu, and then select the SSISDB database on the **SQL databases** page.
34
+
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.
35
+
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.
36
+
28
37
## Connect to the SSISDB database
29
38
30
39
Use SQL Server Management Studio to connect to the SSIS Catalog on your Azure SQL Database server. For more info and screenshots, see [Connect to the SSISDB Catalog database on Azure](ssis-azure-connect-to-catalog-database.md).
@@ -44,7 +53,7 @@ Here are the two most important things to remember. These steps are described in
|**Server type**| Database Engine | This value is required. |
46
55
|**Server name**| The fully qualified server name | The name should be in this format: **mysqldbserver.database.windows.net**. If you need the server name, see [Connect to the SSISDB Catalog database on Azure](ssis-azure-connect-to-catalog-database.md). |
47
-
|**Authentication**| SQL Server Authentication |This quickstart uses SQL authentication. |
56
+
|**Authentication**| SQL Server Authentication |With SQL Server authentication, you can connect to SQL Server or to Azure SQL Database. |
48
57
|**Login**| The server admin account | The account that you specified when you created the server. |
49
58
|**Password**| The password for your server admin account | The password that you specified when you created the server. |
50
59
@@ -54,6 +63,12 @@ Here are the two most important things to remember. These steps are described in
54
63
55
64
5. In Object Explorer, expand **Integration Services Catalogs** and then expand **SSISDB** to view the objects in the SSIS Catalog database.
56
65
66
+
## <aname="wizard_auth"></a> Authentication methods in the Deployment Wizard
67
+
68
+
If you're deploying to a SQL Server with the Deployment Wizard, you have to use SQL Server authentication; you can't use Windows authentication.
69
+
70
+
If you're deploying to an Azure SQL Database server, you have to use SQL Server authentication or Azure Active Directory authentication; you can't use Windows authentication.
71
+
57
72
## Deploy a project with the Deployment Wizard
58
73
59
74
To learn more about deploying packages and about the Deployment Wizard, see [Deploy Integration Services (SSIS) Projects and Packages](../packages/deploy-integration-services-ssis-projects-and-packages.md) and [Integration Services Deployment Wizard](../packages/deploy-integration-services-ssis-projects-and-packages.md#integration-services-deployment-wizard).
Copy file name to clipboardExpand all lines: docs/integration-services/ssis-quickstart-deploy-cmdline.md
+11-4Lines changed: 11 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,12 @@ To deploy the project to Azure SQL Database, get the connection information you
43
43
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.
44
44
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.
45
45
46
+
## Authentication methods in the Deployment Wizard
47
+
48
+
If you're deploying to a SQL Server with the Deployment Wizard, you have to use Windows authentication; you can't use SQL Server authentication.
49
+
50
+
If you're deploying to an Azure SQL Database server, you have to use SQL Server authentication or Azure Active Directory authentication; you can't use Windows authentication.
51
+
46
52
## Start the Integration Services Deployment Wizard
47
53
1. Open a Command Prompt window.
48
54
@@ -59,10 +65,11 @@ To deploy the project to Azure SQL Database, get the connection information you
59
65
Click **Next** to see the **Select Destination** page.
60
66
61
67
3. On the **Select Destination** page, select the destination for the project.
62
-
- Enter the fully qualified server name. If the target server is an Azure SQL Database server, the name is in this format: `<server_name>.database.windows.net`.
63
-
- Then click **Browse** to select the target folder in SSISDB.
64
-
Click **Next** to open the **Review** page.
65
-
68
+
- Enter the fully qualified server name. If the target server is an Azure SQL Database server, the name is in this format `<server_name>.database.windows.net`.
69
+
- Provide authentication information, and then select **Connect**. See [Authentication methods in the Deployment Wizard](#wizard_auth) in this article.
70
+
- Then select **Browse** to select the target folder in SSISDB.
71
+
- Then select **Next** to open the **Review** page. (The **Next** button is enabled only after you select **Connect**.)
72
+
66
73
4. On the **Review** page, review the settings you selected.
67
74
- You can change your selections by clicking **Previous**, or by clicking any of the steps in the left pane.
68
75
- Click **Deploy** to start the deployment process.
Copy file name to clipboardExpand all lines: docs/integration-services/ssis-quickstart-deploy-ssms.md
+11-4Lines changed: 11 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,12 @@ To deploy the project to Azure SQL Database, get the connection information you
45
45
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.
46
46
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.
47
47
48
+
## <aname="wizard_auth"></a> Authentication methods in the Deployment Wizard
49
+
50
+
If you're deploying to a SQL Server with the Deployment Wizard, you have to use Windows authentication; you can't use SQL Server authentication.
51
+
52
+
If you're deploying to an Azure SQL Database server, you have to use SQL Server authentication or Azure Active Directory authentication; you can't use Windows authentication.
53
+
48
54
## Connect to the SSISDB database
49
55
50
56
Use SQL Server Management Studio to establish a connection to the SSIS Catalog.
@@ -57,7 +63,7 @@ Use SQL Server Management Studio to establish a connection to the SSIS Catalog.
|**Server type**| Database engine | This value is required. |
59
65
|**Server name**| The fully qualified server name | If you're connecting to an Azure SQL Database server, the name is in this format: `<server_name>.database.windows.net`. |
60
-
|**Authentication**| SQL Server Authentication |This quickstart uses SQL authentication. If you're connecting to an Azure SQL Database server, you can't use Windows authentication. |
66
+
|**Authentication**| SQL Server Authentication |With SQL Server authentication, you can connect to SQL Server or to Azure SQL Database. See [Authentication methods in the Deployment Wizard](#wizard_auth) in this article. |
61
67
|**Login**| The server admin account | This account is the account that you specified when you created the server. |
62
68
|**Password**| The password for your server admin account | This password is the password that you specified when you created the server. |
63
69
@@ -81,9 +87,10 @@ Use SQL Server Management Studio to establish a connection to the SSIS Catalog.
81
87
Click **Next** to see the **Select Destination** page.
82
88
83
89
3. On the **Select Destination** page, select the destination for the project.
84
-
- Enter the fully qualified server name. If the target server is an Azure SQL Database server, the name is in this format: `<server_name>.database.windows.net`.
85
-
- Then click **Browse** to select the target folder in SSISDB.
86
-
Click **Next** to open the **Review** page.
90
+
- Enter the fully qualified server name. If the target server is an Azure SQL Database server, the name is in this format `<server_name>.database.windows.net`.
91
+
- Provide authentication information, and then select **Connect**. See [Authentication methods in the Deployment Wizard](#wizard_auth) in this article.
92
+
- Then select **Browse** to select the target folder in SSISDB.
93
+
- Then select **Next** to open the **Review** page. (The **Next** button is enabled only after you select **Connect**.)
87
94
88
95
4. On the **Review** page, review the settings you selected.
89
96
- You can change your selections by clicking **Previous**, or by clicking any of the steps in the left pane.
|**Server name**| The fully qualified server name ||
62
62
|**Database name**|**SSISDB**| The name of the database to which to connect. |
63
-
|**Authentication**| SQL Login| This quickstart uses SQL authentication.|
63
+
|**Authentication**| SQL Login||
64
64
|**User name**| The server admin account | This account is the account that you specified when you created the server. |
65
65
|**Password (SQL Login)**| The password for your server admin account | This password is the password that you specified when you created the server. |
66
66
|**Save Password?**| Yes or No | If you do not want to enter the password each time, select Yes. |
|**Server type**| Database engine | This value is required. |
57
57
|**Server name**| The fully qualified server name | If you're connecting to an Azure SQL Database server, the name is in this format: `<server_name>.database.windows.net`. |
58
-
|**Authentication**| SQL Server Authentication |This quickstart uses SQL authentication. If you're connecting to an Azure SQL Database server, you can't use Windows authentication. |
58
+
|**Authentication**| SQL Server Authentication |With SQL Server authentication, you can connect to SQL Server or to Azure SQL Database. If you're connecting to an Azure SQL Database server, you can't use Windows authentication. |
59
59
|**Login**| The server admin account | This account is the account that you specified when you created the server. |
60
60
|**Password**| The password for your server admin account | This password is the password that you specified when you created the server. |
|**Server type**| Database engine | This value is required. |
57
57
|**Server name**| The fully qualified server name | If you're connecting to an Azure SQL Database server, the name is in this format: `<server_name>.database.windows.net`. |
58
-
|**Authentication**| SQL Server Authentication |This quickstart uses SQL authentication. If you're connecting to an Azure SQL Database server, you can't use Windows authentication. |
58
+
|**Authentication**| SQL Server Authentication |With SQL Server authentication, you can connect to SQL Server or to Azure SQL Database. If you're connecting to an Azure SQL Database server, you can't use Windows authentication. |
59
59
|**Login**| The server admin account | This account is the account that you specified when you created the server. |
60
60
|**Password**| The password for your server admin account | This password is the password that you specified when you created the server. |
|**Server name**| The fully qualified server name | If you're connecting to an Azure SQL Database server, the name is in this format: `<server_name>.database.windows.net`. |
74
74
|**Database name**|**SSISDB**| The name of the database to which to connect. |
75
-
|**Authentication**| SQL Login| This quickstart uses SQL authentication. If you're connecting to an Azure SQL Database server, you can't use Windows authentication. |
75
+
|**Authentication**| SQL Login| With SQL Server authentication, you can connect to SQL Server or to Azure SQL Database. If you're connecting to an Azure SQL Database server, you can't use Windows authentication. |
76
76
|**User name**| The server admin account | This account is the account that you specified when you created the server. |
77
77
|**Password (SQL Login)**| The password for your server admin account | This password is the password that you specified when you created the server. |
78
78
|**Save Password?**| Yes or No | If you do not want to enter the password each time, select Yes. |
0 commit comments