Set statement

Applies to: ✅ Microsoft FabricAzure Data ExplorerAzure MonitorMicrosoft Sentinel

The set statement is used to set a request property for the duration of the query.

Request properties control how a query executes and returns results. They can be boolean flags, which are false by default, or have an integer value. A query may contain zero, one, or more set statements. Set statements affect only the tabular expression statements that trail them in the program order. Any two statements must be separated by a semicolon.

Request properties aren't formally a part of the Kusto Query Language and may be modified without being considered as a breaking language change.

Note

Syntax

set OptionName [= OptionValue]

Learn more about syntax conventions.

Parameters

Name Type Required Description
OptionName string ✔️ The name of the request property.
OptionValue ✔️ The value of the request property.

Example

The examples in this article use publicly available tables in the help cluster, such as the StormEvents table in the Samples database.

The examples in this article use publicly available tables, such as the StormEvents table in the Weather analytics sample data.

set querytrace;
Events | take 100