How To Provide Long Description For ADX Table

Villarreal, Andrea L 41 Reputation points
2022-11-22T14:10:35.397+00:00

How can a longer description be provided and viewed, as well as possibly other information, about a table in Azure Data Explorer (ADX)?

For example,

Here_Is_An_ADX_Table

could have a description:
This table contains a row for each analysis, which is performed on a daily basis based on the BRG data resampled per the XRF rate.

Sometimes more information describing a table is necessary, and is too long to include in the table's title.

Azure Data Explorer
Azure Data Explorer
An Azure data analytics service for real-time analysis on large volumes of data streaming from sources including applications, websites, and internet of things devices.
484 questions
0 comments No comments
{count} votes

Accepted answer
  1. Wilko van de Velde 2,226 Reputation points
    2022-11-23T07:55:28.51+00:00

    Hi VillarrealAndreaL,

    You can use the option docstring when creating or altering a table, for example:

    .create table Telemetry (DeviceID: string, Timestamp: datetime, WaterTemperature: decimal, AirHumidity: decimal)  with (docstring = "Table description")  
    

    More information: https://learn.microsoft.com/en-us/azure/data-explorer/kusto/management/alter-table-docstring-command

    2 people found this answer helpful.

0 additional answers

Sort by: Most helpful