Skip to content

Commit 313a8b1

Browse files
committed
updated title and TOC item
1 parent 9284276 commit 313a8b1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

articles/event-hubs/TOC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
items:
2424
- name: Visualize data anomalies on Event Hubs data streams
2525
href: event-hubs-tutorial-visualize-anomalies.md
26-
- name: Store captured data in a data warehouse
26+
- name: Store captured data in a SQL Data Warehouse
2727
href: store-captured-data-data-warehouse.md
2828
- name: Stream data into Azure Databricks using Event Hubs
2929
href: ../azure-databricks/databricks-stream-from-eventhubs.md

articles/event-hubs/store-captured-data-data-warehouse.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Capture Event Hubs data in a SQL Data Warehouse using Event Grid and Azure Functions
1+
# Process and migrate captured Event Hubs data to a SQL Data Warehouse using Event Grid and Azure Functions
22

33
Event Hubs [Capture](https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-capture-overview) is the easiest way to automatically deliver streamed data in Event Hubs to an Azure Blob storage or Azure Data Lake store. You can subsequently process and deliver the data to any other storage destinations of your choice, such as SQL Data Warehouse or Cosmos DB. In this tutorial, you learn how you to capture data from your event hub into a SQL Database Warehouse by using an [Event Grid](https://docs.microsoft.com/azure/event-grid/overview) triggered Azure Function.
44

@@ -11,7 +11,7 @@ Event Hubs [Capture](https://docs.microsoft.com/en-us/azure/event-hubs/event-hub
1111
In this tutorial, you do the following actions:
1212

1313
> [!div class="checklist"]
14-
> * Create a table in SQL Data Warehouse
14+
> * Deploy the infrastructure
1515
> * Publish code to the Functions App
1616
> * Create an Event Grid subscription from the Functions app
1717
> * Stream sample data into Event Hub.
@@ -68,7 +68,7 @@ New-AzureRmResourceGroup -Name rgDataMigration -Location westcentralus
6868
New-AzureRmResourceGroupDeployment -ResourceGroupName rgDataMigration -TemplateUri https://raw.githubusercontent.com/Azure/azure-docs-json-samples/master/event-grid/EventHubsDataMigration.json -eventHubNamespaceName <event-hub-namespace> -eventHubName hubdatamigration -sqlServerName <sql-server-name> -sqlServerUserName <user-name> -sqlServerDatabaseName <database-name> -storageName <unique-storage-name> -functionAppName <app-name>
6969
```
7070

71-
## Create a table in SQL Data Warehouse
71+
### Create a table in SQL Data Warehouse
7272
Create a table in your SQL data warehouse by running the [CreateDataWarehouseTable.sql](https://github.com/Azure/azure-event-hubs/blob/master/samples/e2e/EventHubsCaptureEventGridDemo/scripts/CreateDataWarehouseTable.sql) script using Visual Studio or the Query Editor in the portal.
7373

7474
```sql

0 commit comments

Comments
 (0)