diff --git a/data-explorer/get-data-storage.md b/data-explorer/get-data-storage.md
index 27d601613f..20bdee9b2b 100644
--- a/data-explorer/get-data-storage.md
+++ b/data-explorer/get-data-storage.md
@@ -16,7 +16,7 @@ For general information on data ingestion, see [Azure Data Explorer data ingesti
> [!WARNING]
>
-> The Get Data Wizard doesn't support creating a data connection to Event Hubs through [private endpoints](security-network-private-endpoint.md) or [managed private endpoints](security-network-private-endpoint.md#managed-private-endpoints). Follow the instructions to get data using the [.ingest](/kusto/management/data-ingestion/ingest-from-storage-queued?view=azure-data-explorer&preserve-view=true) command.
+> The Get Data Wizard doesn't support ingestion from Azure Storage through [private endpoints](security-network-private-endpoint.md) or [managed private endpoints](security-network-private-endpoint.md#managed-private-endpoints). Follow the instructions to get data using the [.ingest](/kusto/management/data-ingestion/ingest-from-storage-queued?view=azure-data-explorer&preserve-view=true) command.
## Prerequisites
diff --git a/data-explorer/kusto/query/mv-apply-operator.md b/data-explorer/kusto/query/mv-apply-operator.md
index 1a977d9586..2b9ecc4ae5 100644
--- a/data-explorer/kusto/query/mv-apply-operator.md
+++ b/data-explorer/kusto/query/mv-apply-operator.md
@@ -280,32 +280,32 @@ This query dynamically removes properties from the packed values object based on
:::moniker range="azure-data-explorer"
> [!div class="nextstepaction"]
-> Run the query
+> Run the query
::: moniker-end
```kusto
-datatable(SourceNumber: string, TargetNumber: string, CharsCount: long)
+datatable(Source: string, Target: string, Count: long)
[
- '555-555-1234', '555-555-1212', 46,
- '555-555-1212', '', int(null)
+ '555-1234', '555-1212', 46,
+ '555-2424', '', int(null)
]
-| extend values = pack_all()
-| mv-apply removeProperties = values on
+| extend Pack = pack_all()
+| mv-apply removeProperties = Pack on
(
- mv-expand kind = array values
- | where values[1] !startswith "555"
- | summarize propsToRemove = make_set(values[0])
+ mv-expand kind = array Pack
+ | where Pack[1] !startswith "555"
+ | summarize propsToRemove = make_set(Pack[0])
)
-| extend values = bag_remove_keys(values, propsToRemove)
+| extend values = bag_remove_keys(Pack, propsToRemove)
| project-away propsToRemove
```
**Output**
-| SourceNumber | TargetNumber | CharsCount | values |
-|--|--|--|--|
-| 555-555-1234 | 555-555-1212 | 46 | {
"SourceNumber": "555-555-1234",
"TargetNumber": "555-555-1212"
} |
-| 555-555-1212 | | | {
"SourceNumber": "555-555-1212"
} |
+| Source | Target | Count | Pack | `values` |
+|--|--|--|--|--|
+| 555-1234 | 555-1212 | 46 | {
"Source": "555-1234",
"Target": "555-1212",
"Count": 46
} | {
"Source": "555-1234",
"Target": "555-1212"
} |
+| 555-2424 | | | {
"Source": "555-2424",
"Target": "",
"Count": null
} | {
"Source": "555-2424"
} |
## Related content