Skip to content

Commit 4d1baa4

Browse files
authored
Merge pull request #98478 from KalyanChanumolu-MSFT/patch-22
(AzureCXP) MicrosoftDocs/azure-docs#44023
2 parents 55bac07 + 72ac5da commit 4d1baa4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

articles/data-explorer/ingest-sample-data.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,14 @@ The **StormEvents** sample data set contains weather-related data from the [Nati
3030

3131
1. In the **Add cluster** dialog box, enter your cluster URL in the form `https://<ClusterName>.<Region>.kusto.windows.net/`, then select **Add**.
3232

33-
1. Paste in the following command, and select **Run**.
33+
1. Paste in the following command, and select **Run** to create a StormEvents table.
3434

3535
```Kusto
3636
.create table StormEvents (StartTime: datetime, EndTime: datetime, EpisodeId: int, EventId: int, State: string, EventType: string, InjuriesDirect: int, InjuriesIndirect: int, DeathsDirect: int, DeathsIndirect: int, DamageProperty: int, DamageCrops: int, Source: string, BeginLocation: string, EndLocation: string, BeginLat: real, BeginLon: real, EndLat: real, EndLon: real, EpisodeNarrative: string, EventNarrative: string, StormSummary: dynamic)
37+
```
38+
1. Paste in the following command, and select **Run** to ingest data into StormEvents table.
3739
40+
```Kusto
3841
.ingest into table StormEvents h'https://kustosamplefiles.blob.core.windows.net/samplefiles/StormEvents.csv?st=2018-08-31T22%3A02%3A25Z&se=2020-09-01T22%3A02%3A00Z&sp=r&sv=2018-03-28&sr=b&sig=LQIbomcKI8Ooz425hWtjeq6d61uEaq21UVX7YrM61N4%3D' with (ignoreFirstRecord=true)
3942
```
4043

0 commit comments

Comments
 (0)