Casey Crookston
Casey Crookston

Reputation: 13945

Azure Storage Explorer: How to query Table Storage Rowkey with "Contains"?

We are sending our logs to Azure Table Storage. I am trying to query those logs but finding it hard to do via Azure Storage Explorer. I can't imagine why there is not a "contains" option to filter the RowKey column (where our actual log data is contained.)

enter image description here

Am I missing something obvious? Or is there a better tool for this job?

Upvotes: 2

Views: 5015

Answers (1)

Gaurav Mantri
Gaurav Mantri

Reputation: 136136

Contains unfortunately is not a supported query operator in Azure Table Storage.

For a list of supported/unsupported query operators, please see this link: https://learn.microsoft.com/en-us/rest/api/storageservices/query-operators-supported-for-the-table-service.

Upvotes: 3

Related Questions