| title | description | ms.reviewer | ms.topic | ms.date |
|---|---|---|---|---|
.show external table details |
Learn how to use the `.show external table details` command to show details of the specified external tables in the database. |
yifats |
reference |
04/23/2025 |
[!INCLUDE applies] [!INCLUDE fabric] [!INCLUDE azure-data-explorer]
Returns query acceleration details of a specified external table or all external tables in the database.
This command is relevant to any external table of any type. For an overview of external tables, see external tables.
You must have at least Database User, Database Viewer, Database Monitor to run these commands. For more information, see role-based access control.
.show external tables details
.show external table TableName details
[!INCLUDE syntax-conventions-note]
| Name | Type | Required | Description |
|---|---|---|---|
| TableName | string |
✔️ | The name of the external table to show. |
| Output parameter | Type | Description |
|---|---|---|
| TableName | string |
Name of external table |
| QueryAccelerationPolicy | string |
A JSON-serialization of the query acceleration policy that is set on the table. |
| QueryAccelerationState | string |
A JSON-serialization of the query acceleration status parameters. |
| Column | Type | Description |
|---|---|---|
| TableName | string |
The name of the external table. |
| IsEnabled | bool |
Indicates whether the external table has a query acceleration policy enabled. |
| Hot | timespan |
The hot period defined in the query acceleration policy. |
| Column | Type | Description |
|---|---|---|
| HotSize | long |
The total size on disk (in bytes) of artifacts accelerated due to the query acceleration policy. |
| CompletePercentage | double |
The percentage of artifacts that are accelerated, out of the total artifacts that are able to be accelerated. |
| PendingDataFilesSize | long |
The total size of artifacts that are pending acceleration. |
| PendingDataFilesCount | int |
The number of artifacts that are pending acceleration. |
| IsHealthy | string |
Indicated whether healthy or not health. |
| NotHealthyReason | string |
Describes the reason for query acceleration not being healthy. Empty if healthy. |
| LastUpdatedDateTime | datetime |
The last datetime when the internal representation of the table was successfully refreshed. |
| Latency | timespan |
The time in minutes since the last new data was added to your logical copy. |
.show external tables details
.show external table deltatable detailsOutput
| TableName | QueryAccelerationPolicy | QueryAccelerationState |
|---|---|---|
| deltatable | { | |
| "IsEnabled": true, "Hot": "365000.00:00:00"} | { "HotSize": 29454192, "CompletionPercentage": 75.0, "PendingArtifactSize": 21162035, "PendingArtifactCount": 3, "IsHealthy": false, "NotHealthyReason": "InaccessibleDeltaTable : Delta table does not exist", "LastUpdatedDateTime": "2025-04-03 13:38:00.1541537", "Latency": "26.00:58:12.8941033"} |