Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions data-explorer/kusto/query/externaldata-operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,19 @@ The `externaldata` operator returns a table whose schema is defined in the query
| *storageConnectionString* | `string` | :heavy_check_mark:| A [storage connection string](../api/connection-strings/storage-connection-strings.md) of the storage artifact to query. |
| *propertyName*, *propertyValue* | `string` | | A list of optional [supported properties](#supported-properties) that determines how to interpret the data retrieved from storage.

> [!WARN]
> For security reasons, make sure that no credential is specified by the *storageConnectionString* property.
> If the query needs to specify credentials, use [query parameters](./query-parameters-statement.md) to specify the whole connection string.
>
> For example, assuming that the query includes a query parameter called `URI` whose value points at Blob Storage, the query would look like this:
> ```kusto
> declare query_parameters(URI:string);
> externaldata(x:string)[URI]
> ```
>
> If this is not possible (for example, you're using a client that does not support setting query parameters),
> be sure to use [obfuscated string literals](./scalar-data-types/string.md#obfuscated-string-literals).

### Supported properties

| Property | Type | Description |
Expand Down