Skip to content

Commit 91b1124

Browse files
committed
Review
1 parent 1c06e53 commit 91b1124

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/data-lake-analytics/data-lake-analytics-schedule-jobs-ssis.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
title: Schedule Azure Data Lake Analytics U-SQL jobs using SSIS
33
description: Learn how to use SQL Server Integration Services to schedule U-SQL jobs with inline script or from U-SQL query files.
4-
ms.reviewer: jasonh
4+
ms.reviewer: whhender
55
ms.service: data-lake-analytics
66
ms.topic: how-to
7-
ms.date: 07/17/2018
7+
ms.date: 01/20/2023
88
---
99
# Schedule U-SQL jobs using SQL Server Integration Services (SSIS)
1010

@@ -89,7 +89,7 @@ In SSIS package design view, add an **Azure Data Lake Store File System Task**,
8989

9090
![Screenshot that shows the File Connection Manager Editor with "Existing file" selected for "Usage type".](./media/data-lake-analytics-schedule-jobs-ssis/configure-file-connection-for-foreach-loop-container.png)
9191

92-
3. In **Connection Managers** view, right-click the file connection created just now, and choose **Properties**.
92+
3. In **Connection Managers** view, right-click the file connection created, and choose **Properties**.
9393

9494
4. In the **Properties** window, expand **Expressions**, and set **ConnectionString** to the variable defined in Foreach Loop Container, for example, `@[User::FileName]`.
9595

@@ -112,7 +112,7 @@ You can use U-SQL files in Azure Blob Storage by using **Azure Blob Download Tas
112112

113113
The steps are similar with [Scenario 2: Use U-SQL files in Azure Data Lake Store](#scenario-2-use-u-sql-files-in-azure-data-lake-store). Change the Azure Data Lake Store File System Task to Azure Blob Download Task. [Learn more about Azure Blob Download Task](/sql/integration-services/control-flow/azure-blob-download-task).
114114

115-
The control flow is like below.
115+
The control flow is like this:
116116

117117
![Use U-SQL files in Azure Data Lake Store](./media/data-lake-analytics-schedule-jobs-ssis/use-u-sql-files-in-azure-blob-storage.png)
118118

@@ -122,15 +122,15 @@ Besides of using U-SQL files stored on cloud, you can also use files on your loc
122122

123123
1. Right-click **Connection Managers** in SSIS project and choose **New Connection Manager**.
124124

125-
2. Select **File** type and click **Add...**.
125+
2. Select **File** type and select **Add...**.
126126

127127
3. Set **Usage type** to **Existing file**, and set the **File** to the file on the local machine.
128128

129129
![Add file connection to the local file](./media/data-lake-analytics-schedule-jobs-ssis/configure-file-connection-for-foreach-loop-container.png)
130130

131131
4. Add **Azure Data Lake Analytics** Task and:
132132
1. Set **SourceType** to **FileConnection**.
133-
2. Set **FileConnection** to the File Connection created just now.
133+
2. Set **FileConnection** to the File Connection created.
134134

135135
5. Finish other configurations for Azure Data Lake Analytics Task.
136136

@@ -144,13 +144,13 @@ In some cases, you may need to dynamically generate the U-SQL statements. You ca
144144

145145
3. Add **Azure Data Lake Analytics Task** and:
146146
1. Set **SourceType** to **Variable**.
147-
2. Set **SourceVariable** to the SSIS Variable created just now.
147+
2. Set **SourceVariable** to the SSIS Variable created now.
148148

149149
4. Finish other configurations for Azure Data Lake Analytics Task.
150150

151151
## Scenario 6-Pass parameters to U-SQL script
152152

153-
In some cases, you may want to dynamically set the U-SQL variable value in the U-SQL script. **Parameter Mapping** feature in Azure Data Lake Analytics Task help with this scenario. There are usually two typical user cases:
153+
In some cases, you may want to dynamically set the U-SQL variable value in the U-SQL script. **Parameter Mapping** feature in Azure Data Lake Analytics Task helps with this scenario. There are usually two typical user cases:
154154

155155
- Set the input and output file path variables dynamically based on current date and time.
156156
- Set the parameter for stored procedures.

0 commit comments

Comments
 (0)