Skip to content

Commit a279205

Browse files
Merge pull request #2653 from MicrosoftDocs/main638853237001689804sync_temp
For protected branch, push strategy should use PR and merge to target branch method to work around git push error
2 parents 6ec5890 + 6eebb92 commit a279205

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

data-explorer/kusto/management/show-ingestion-mapping-command.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
title: .show ingestion mapping
3-
description: Learn how to use the `.show ingestion mapping` command to view the ingestion mapping for a table or database.
2+
title: The show ingestion mapping command
3+
description: Learn how to use the show ingestion mapping command to view the ingestion mapping for a table or database.
44
ms.reviewer: orspodek
55
ms.topic: reference
66
ms.date: 08/11/2024
77
---
8-
# .show ingestion mapping
8+
# `.show ingestion mapping`
99

1010
> [!INCLUDE [applies](../includes/applies-to-version/applies.md)] [!INCLUDE [fabric](../includes/applies-to-version/fabric.md)] [!INCLUDE [azure-data-explorer](../includes/applies-to-version/azure-data-explorer.md)]
1111
@@ -27,13 +27,13 @@ View all mappings or all mappings of a specific type:
2727

2828
|Name|Type|Required|Description|
2929
|--|--|--|--|
30-
|*EntityName*| `string` | :heavy_check_mark:|The name of the table or database for which to show the ingestion mapping(s).|
31-
|*MappingKind*| `string` ||The type of mapping(s) to view. Possible values: `csv`, `json`, `avro`, `w3clogfile`, `parquet`, and `orc`.|
30+
|*EntityName*| `string` | :heavy_check_mark:|The name of the table or database for which to show the ingestion mappings.|
31+
|*MappingKind*| `string` ||The type of mappings to view. Possible values: `csv`, `json`, `avro`, `w3clogfile`, `parquet`, and `orc`.|
3232
|*MappingName*| `string` ||The name of the mapping to view. This argument is required if you specify that you want to view a single `mapping` instead of multiple `mappings` for the entity. See [syntax options](#syntax).|
3333

3434
## Returns
3535

36-
The command returns a table with the columns `Name`, `Kind`, and `Mapping` that describe the ingestion mapping(s) names, types, and specifications.
36+
The command returns a table with the columns `Name`, `Kind`, and `Mapping` that describe one or more ingestion mappings names, types, and specifications.
3737

3838
## Example
3939

@@ -49,10 +49,11 @@ The command returns a table with the columns `Name`, `Kind`, and `Mapping` that
4949
|----------|------|-------------|
5050
| mapping1 | CSV | `[{"Name":"rownumber","DataType":"int","CsvDataType":null,"Ordinal":0,"ConstValue":null},{"Name":"rowguid","DataType":"string","CsvDataType":null,"Ordinal":1,"ConstValue":null}]` |
5151

52-
If the table only contained one CSV formatted mapping named "mapping1", the following query would return the same output as the previous query.
52+
If the table only contained one CSV formatted mapping named `mapping1`, the following query would return the same output as the previous query.
5353

5454
```kusto
5555
.show table MyTable ingestion csv mappings
56+
```
5657

5758
```kusto
5859
.show database MyDatabase ingestion csv mappings
@@ -61,5 +62,5 @@ If the table only contained one CSV formatted mapping named "mapping1", the foll
6162
## Related content
6263

6364
* Learn more about [data mappings](mappings.md)
64-
* Use [.create ingestion mapping](create-ingestion-mapping-command.md) to create a new mapping
65-
* Use [.alter ingestion mapping](alter-ingestion-mapping-command.md) to change an existing mapping
65+
* Use the [`.create ingestion mapping`](create-ingestion-mapping-command.md) command to create a new mapping
66+
* Use the [`.alter ingestion mapping`](alter-ingestion-mapping-command.md) command to change an existing mapping

0 commit comments

Comments
 (0)