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/synapse-analytics/sql-data-warehouse/sql-data-warehouse-integrate-azure-stream-analytics.md
+38-7Lines changed: 38 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,10 +22,41 @@ In this article, you will learn how to use your dedicated SQL pool as an output
22
22
23
23
* Azure Stream Analytics Job - To create an Azure Stream Analytics job, follow the steps in the [Get started using Azure Stream Analytics](../../stream-analytics/stream-analytics-real-time-fraud-detection.md?toc=/azure/synapse-analytics/sql-data-warehouse/toc.json&bc=/azure/synapse-analytics/sql-data-warehouse/breadcrumb/toc.json) tutorial to:
24
24
25
-
1. Create an Event Hub input
26
-
2. Configure and start event generator application
27
-
3. Provision a Stream Analytics job
28
-
4. Specify job input and query
25
+
1. Create an Event Hubs input
26
+
1. Configure and start event generator application. This app sends data from a client through your Event Hubs. The JSON structure of the data looks as follows:
27
+
28
+
```json
29
+
{
30
+
RecordType: "",
31
+
SystemIdentity: "",
32
+
FileNum: ,
33
+
SwitchNum: "",
34
+
CallingNum: "",
35
+
CallingIMSI: "",
36
+
CalledNum: "",
37
+
CalledIMSI: "",
38
+
DateS: "",
39
+
TimeS: "",
40
+
TimeType: ,
41
+
CallPeriod: ,
42
+
CallingCellID: "",
43
+
CalledCellID: "",
44
+
ServiceType: "",
45
+
Transfer: ,
46
+
IncomingTrunk: "",
47
+
OutgoingTrunk: "",
48
+
MSRN: "",
49
+
CalledNum2: "",
50
+
FCIFlag: "",
51
+
callrecTime: "",
52
+
EventProcessedUtcTime: "",
53
+
PartitionId: ,
54
+
EventEnqueuedUtcTime: ""
55
+
}
56
+
```
57
+
58
+
1. Provision a Stream Analytics job
59
+
1. Specify job input and query
29
60
* Dedicated SQL pool - To create a new dedicated SQL pool, follow the steps in the [Quickstart: Create a dedicated SQL pool](../quickstart-create-sql-pool-portal.md).
30
61
31
62
## Specify streaming output to point to your dedicated SQL pool
@@ -36,7 +67,7 @@ From the Azure portal, go to your Stream Analytics job and click on **Outputs**
36
67
37
68
### Step 2
38
69
39
-
Click on the **Add** button and choose **Azure Synapse Analytics** from the dropdown menu.
70
+
Click on the **Add** button and choose **Azure Synapse Analytics** from the drop-down menu.
* If your dedicated SQL pool is in the same subscription as the Stream Analytics job, click on ***Select Azure Synapse Analytics from your subscriptions***.
50
81
* If your dedicated SQL pool is in a different subscription, click on Provide Azure Synapse Analytics settings manually.
51
-
**Database*: Select the destination database from the dropdown list.
82
+
* *Database*: Select the destination database from the drop-down list.
52
83
* *User Name*: Specify the user name of an account that has write permissions for the database.
53
84
* *Password*: Provide the password for the specified user account.
54
85
* *Table*: Specify the name of the target table in the database.
@@ -114,7 +145,7 @@ Start the Azure Stream Analytics job. Click on the ***Start*** button on the **
114
145
Click the ***Start*** button on the start job pane.
0 commit comments