Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit adf885d

Browse files
committed
Made fixes suggested by PR reviewer and by Acrolinx.
1 parent b465da5 commit adf885d

9 files changed

Lines changed: 29 additions & 29 deletions

docs/integration-services/ssis-quickstart-deploy-cmdline.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ For more info about the Integration Services Deployment Wizard, see [Integration
1919

2020
2. Run `ISDeploymentWizard.exe`. The Integration Services Deployment Wizard opens.
2121

22-
If the folder that contains `ISDeploymentWizard.exe` is not in your `path` environment variable, you may have to use the `cd` command to change to its directory. For SQL Server 2017, this is typically `C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn`.
22+
If the folder that contains `ISDeploymentWizard.exe` is not in your `path` environment variable, you may have to use the `cd` command to change to its directory. For SQL Server 2017, this folder is typically `C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn`.
2323

2424
## Deploy a project with the wizard
2525
1. On the **Introduction** page of the wizard, review the introduction. Click **Next** to open the **Select Source** page.
@@ -30,7 +30,7 @@ For more info about the Integration Services Deployment Wizard, see [Integration
3030
Click **Next** to see the **Select Destination** page.
3131

3232
3. On the **Select Destination** page, select the destination for the project.
33-
- 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`.
33+
- 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`.
3434
- Then click **Browse** to select the target folder in SSISDB.
3535
Click **Next** to open the **Review** page.
3636

docs/integration-services/ssis-quickstart-deploy-dotnet.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ Before you start, make sure you have Visual Studio or Visual Studio Code install
2121
> [!NOTE]
2222
> An Azure SQL Database server listens on port 1433. If you're trying to connect to an Azure SQL Database server from within a corporate firewall, this port must be open in the corporate firewall for you to connect successfully.
2323
24-
## For SQL Database, get the connection info
24+
## Get the connection info, if deployed to SQL Database,
2525

2626
If your packages are deployed to an 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.
2727

2828
1. Log in to the [Azure portal](https://portal.azure.com/).
2929
2. Select **SQL Databases** from the left-hand menu, and click the SSISDB database on the **SQL databases** page.
30-
3. On the **Overview** page for your database, review the fully qualified server name. To bring up the **Click to copy** option, hover over the server name .
30+
3. On the **Overview** page for your database, review the fully qualified server name. To bring up the **Click to copy** option, hover over the server name.
3131
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.
3232
5. Click **Show database connection strings**.
3333
6. Review the complete **ADO.NET** connection string. The sample code uses a `SqlConnectionStringBuilder` to recreate this connection string with the individual parameter values that you provide.
@@ -46,9 +46,9 @@ If your packages are deployed to an Azure SQL Database, get the connection infor
4646
- Microsoft.SqlServer.Management.Sdk.Sfc
4747
- Microsoft.SqlServer.Smo
4848
4. Click the **Browse** button to add a reference to **Microsoft.SqlServer.Management.IntegrationServices**. (This assembly is installed only in the global assembly cache (GAC).) The **Select the files to reference** dialog box opens.
49-
5. In the **Select the files to reference** dialog box, navigate to the GAC folder that contains the assembly. Typically this is `C:\Windows\assembly\GAC_MSIL\Microsoft.SqlServer.Management.IntegrationServices\14.0.0.0__89845dcd8080cc91`.
49+
5. In the **Select the files to reference** dialog box, navigate to the GAC folder that contains the assembly. Typically this folder is `C:\Windows\assembly\GAC_MSIL\Microsoft.SqlServer.Management.IntegrationServices\14.0.0.0__89845dcd8080cc91`.
5050
6. Select the assembly (that is, the .dll file) in the folder and click **Add**.
51-
7. Click **OK** to close the **Reference Manager** dialog box and add the three references. Check the **References** list in Solution Explorer to make sure the references are there.
51+
7. Click **OK** to close the **Reference Manager** dialog box and add the three references. To make sure the references are there, check the **References** list in Solution Explorer.
5252

5353
## Add the C# code
5454
1. Open **Program.cs**.
@@ -105,7 +105,7 @@ namespace deploy_ssis_project
105105

106106
## Run the code
107107

108-
1. Press **F5** to run the application.
108+
1. To run the application, press **F5**.
109109
2. In SSMS, verify that the project has been deployed.
110110

111111
## Next steps

docs/integration-services/ssis-quickstart-deploy-ssms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Use SQL Server Management Studio to establish a connection to the SSIS Catalog.
5757
Click **Next** to see the **Select Destination** page.
5858

5959
3. On the **Select Destination** page, select the destination for the project.
60-
- 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`.
60+
- 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`.
6161
- Then click **Browse** to select the target folder in SSISDB.
6262
Click **Next** to open the **Review** page.
6363

docs/integration-services/ssis-quickstart-deploy-tsql-ssms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Run the following Transact-SQL code to deploy an SSIS project.
5656

5757
4. Run the script.
5858

59-
5. In Object Explorer, refresh the contents of **SSISDB** if necessary and check for the project that you just deployed.
59+
5. In Object Explorer, refresh the contents of **SSISDB** if necessary and check for the project that you deployed.
6060

6161
```sql
6262
DECLARE @ProjectBinary AS varbinary(max)

docs/integration-services/ssis-quickstart-deploy-tsql-vscode.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Before you start, make sure you have installed the latest version of Visual Stud
2525

2626
## Set language mode to SQL in VS Code
2727

28-
Set the language mode is set to **SQL** in Visual Studio Code to enable mssql commands and T-SQL IntelliSense.
28+
To enable `mssql` commands and T-SQL IntelliSense, set the language mode is set to **SQL** in Visual Studio Code.
2929

3030
1. Open Visual Studio Code and then open a new window.
3131

@@ -38,13 +38,13 @@ Set the language mode is set to **SQL** in Visual Studio Code to enable mssql co
3838
Use Visual Studio Code to establish a connection to the SSIS Catalog.
3939

4040
> [!IMPORTANT]
41-
> Before continuing, make sure that you have your server, database, and login information ready. Once you begin entering the connection profile information, if you change your focus from Visual Studio Code, you have to restart creating the connection profile.
41+
> Before continuing, make sure that you have your server, database, and login information ready. If you change your focus from Visual Studio Code after you begin entering the connection profile information, you have to restart creating the connection profile.
4242
4343
1. In VS Code, press **CTRL+SHIFT+P** (or **F1**) to open the Command Palette.
4444

4545
2. Type **sqlcon** and press **ENTER**.
4646

47-
3. Press **ENTER** to select **Create Connection Profile**. This creates a connection profile for your SQL Server instance.
47+
3. Press **ENTER** to select **Create Connection Profile**. This step creates a connection profile for your SQL Server instance.
4848

4949
4. Follow the prompts to specify the connection properties for the new connection profile. After specifying each value, press **ENTER** to continue.
5050

@@ -55,7 +55,7 @@ Use Visual Studio Code to establish a connection to the SSIS Catalog.
5555
| **Authentication** | SQL Login| This quickstart uses SQL authentication. |
5656
| **User name** | The server admin account | This is the account that you specified when you created the server. |
5757
| **Password (SQL Login)** | The password for your server admin account | This is the password that you specified when you created the server. |
58-
| **Save Password?** | Yes or No | Select Yes if you do not want to enter the password each time. |
58+
| **Save Password?** | Yes or No | If you do not want to enter the password each time, select Yes. |
5959
| **Enter a name for this profile** | A profile name, such as **mySSISServer** | A saved profile name speeds your connection on subsequent logins. |
6060

6161
5. Press the **ESC** key to close the info message that informs you that the profile is created and connected.

docs/integration-services/ssis-quickstart-run-cmdline.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ This quick start tutorial demonstrates how to run an SSIS package from the comma
1717
1818
For more info about `DTExec.exe`, see [dtexec Utility](https://docs.microsoft.com/en-us/sql/integration-services/packages/dtexec-utility).
1919

20-
## Steps
20+
## Run a package with dtexec
2121

22-
If the folder that contains `DTExec.exe` is not in your `path` environment variable, you may have to use the `cd` command to change to its directory. For SQL Server 2017, this is typically `C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn`.
22+
If the folder that contains `DTExec.exe` is not in your `path` environment variable, you may have to use the `cd` command to change to its directory. For SQL Server 2017, this folder is typically `C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn`.
2323

2424
With the parameter values used in the following example, the program runs the package in the specified folder path on the SSIS server - that is, the server that hosts the SSIS Catalog database (SSISDB). The `/Server` parameter provides the server name. The program connects as the current user with Windows Integrated Authentication. To use SQL Authentication, specify the `/User` and `Password` parameters with appropriate values.
2525

2626
1. Open a Command Prompt window.
2727

28-
2. Run `DTExec.exe` and provide values at least for the `ISServer` and the `Server` parameters, as shown in the following example.
28+
2. Run `DTExec.exe` and provide values at least for the `ISServer` and the `Server` parameters, as shown in the following example:
2929

3030
```cmd
3131
dtexec /ISServer "\SSISDB\Project1Folder\Integration Services Project1\Package.dtsx" /Server "localhost"

docs/integration-services/ssis-quickstart-run-dotnet.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: " | Microsoft Docs"
2+
title: "Run an SSIS project with .NET code (C#) | Microsoft Docs"
33
ms.date: "09/25/2017"
44
ms.topic: "article"
55
ms.prod: "sql-server-2017"
@@ -21,13 +21,13 @@ Before you start, make sure you have Visual Studio or Visual Studio Code install
2121
> [!NOTE]
2222
> An Azure SQL Database server listens on port 1433. If you're trying to connect to an Azure SQL Database server from within a corporate firewall, this port must be open in the corporate firewall for you to connect successfully.
2323
24-
## For SQL Database, get the connection info
24+
## Get the connection info, if deployed to SQL Database,
2525

2626
If your packages are deployed to an 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.
2727

2828
1. Log in to the [Azure portal](https://portal.azure.com/).
2929
2. Select **SQL Databases** from the left-hand menu, and click the SSISDB database on the **SQL databases** page.
30-
3. On the **Overview** page for your database, review the fully qualified server name. To bring up the **Click to copy** option, hover over the server name .
30+
3. On the **Overview** page for your database, review the fully qualified server name. To bring up the **Click to copy** option, hover over the server name.
3131
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.
3232
5. Click **Show database connection strings**.
3333
6. Review the complete **ADO.NET** connection string. The sample code uses a `SqlConnectionStringBuilder` to recreate this connection string with the individual parameter values that you provide.
@@ -46,9 +46,9 @@ If your packages are deployed to an Azure SQL Database, get the connection infor
4646
- Microsoft.SqlServer.Management.Sdk.Sfc
4747
- Microsoft.SqlServer.Smo
4848
4. Click the **Browse** button to add a reference to **Microsoft.SqlServer.Management.IntegrationServices**. (This assembly is installed only in the global assembly cache (GAC).) The **Select the files to reference** dialog box opens.
49-
5. In the **Select the files to reference** dialog box, navigate to the GAC folder that contains the assembly. Typically this is `C:\Windows\assembly\GAC_MSIL\Microsoft.SqlServer.Management.IntegrationServices\14.0.0.0__89845dcd8080cc91`.
49+
5. In the **Select the files to reference** dialog box, navigate to the GAC folder that contains the assembly. Typically this folder is `C:\Windows\assembly\GAC_MSIL\Microsoft.SqlServer.Management.IntegrationServices\14.0.0.0__89845dcd8080cc91`.
5050
6. Select the assembly (that is, the .dll file) in the folder and click **Add**.
51-
7. Click **OK** to close the **Reference Manager** dialog box and add the three references. Check the **References** list in Solution Explorer to make sure the references are there.
51+
7. Click **OK** to close the **Reference Manager** dialog box and add the three references. To make sure the references are there, check the **References** list in Solution Explorer.
5252

5353
## Add the C# code
5454
1. Open **Program.cs**.
@@ -105,7 +105,7 @@ namespace run_ssis_package
105105

106106
## Run the code
107107

108-
1. Press **F5** to run the application.
108+
1. To run the application, press **F5**.
109109
2. Verify that the package ran as expected and then close the application window.
110110

111111
## Next steps

docs/integration-services/ssis-quickstart-run-tsql-ssms.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,15 @@ Use SQL Server Management Studio to establish a connection to the SSIS Catalog o
4444
## Run a package
4545
Run the following Transact-SQL code to run an SSIS package.
4646

47-
1. In SSMS, open a new query window and paste the following code. (This is the code generated by the **Script** option in the **Execute Package** dialog box in SSMS.)
47+
1. In SSMS, open a new query window and paste the following code. (This code is the code generated by the **Script** option in the **Execute Package** dialog box in SSMS.)
4848

4949
2. Update the parameter values in the `catalog.create_execution` stored procedure for your system.
5050

5151
3. Make sure that SSISDB is the current database.
5252

5353
4. Run the script.
5454

55-
5. In Object Explorer, refresh the contents of **SSISDB** if necessary and check for the project that you just deployed.
55+
5. In Object Explorer, refresh the contents of **SSISDB** if necessary and check for the project that you deployed.
5656

5757
```sql
5858
Declare @execution_id bigint

docs/integration-services/ssis-quickstart-run-tsql-vscode.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Before you start, make sure you have installed the latest version of Visual Stud
2222

2323
## Set language mode to SQL in VS Code
2424

25-
Set the language mode is set to **SQL** in Visual Studio Code to enable mssql commands and T-SQL IntelliSense.
25+
To enable `mssql` commands and T-SQL IntelliSense, set the language mode is set to **SQL** in Visual Studio Code.
2626

2727
1. Open Visual Studio Code and then open a new window.
2828

@@ -35,13 +35,13 @@ Set the language mode is set to **SQL** in Visual Studio Code to enable mssql co
3535
Use Visual Studio Code to establish a connection to the SSIS Catalog.
3636

3737
> [!IMPORTANT]
38-
> Before continuing, make sure that you have your server, database, and login information ready. Once you begin entering the connection profile information, if you change your focus from Visual Studio Code, you have to restart creating the connection profile.
38+
> Before continuing, make sure that you have your server, database, and login information ready. If you change your focus from Visual Studio Code after you begin entering the connection profile information, you have to restart creating the connection profile.
3939
4040
1. In VS Code, press **CTRL+SHIFT+P** (or **F1**) to open the Command Palette.
4141

4242
2. Type **sqlcon** and press **ENTER**.
4343

44-
3. Press **ENTER** to select **Create Connection Profile**. This creates a connection profile for your SQL Server instance.
44+
3. Press **ENTER** to select **Create Connection Profile**. This step creates a connection profile for your SQL Server instance.
4545

4646
4. Follow the prompts to specify the connection properties for the new connection profile. After specifying each value, press **ENTER** to continue.
4747

@@ -52,7 +52,7 @@ Use Visual Studio Code to establish a connection to the SSIS Catalog.
5252
| **Authentication** | SQL Login| This quickstart uses SQL authentication. |
5353
| **User name** | The server admin account | This is the account that you specified when you created the server. |
5454
| **Password (SQL Login)** | The password for your server admin account | This is the password that you specified when you created the server. |
55-
| **Save Password?** | Yes or No | Select Yes if you do not want to enter the password each time. |
55+
| **Save Password?** | Yes or No | If you do not want to enter the password each time, select Yes. |
5656
| **Enter a name for this profile** | A profile name, such as **mySSISServer** | A saved profile name speeds your connection on subsequent logins. |
5757

5858
5. Press the **ESC** key to close the info message that informs you that the profile is created and connected.
@@ -62,7 +62,7 @@ Use Visual Studio Code to establish a connection to the SSIS Catalog.
6262
## Run the T-SQL code
6363
Run the following Transact-SQL code to run an SSIS package.
6464

65-
1. In the **Editor** window, enter the following query in the empty query window. (This is the code generated by the **Script** option in the **Execute Package** dialog box in SSMS.)
65+
1. In the **Editor** window, enter the following query in the empty query window. (This code is the code generated by the **Script** option in the **Execute Package** dialog box in SSMS.)
6666

6767
2. Update the parameter values in the `catalog.create_execution` stored procedure for your system.
6868

0 commit comments

Comments
 (0)