Azure 存储资源管理器:如何使用 "Contains" 查询 Table Storage Rowkey?
Azure Storage Explorer: How to query Table Storage Rowkey with "Contains"?
我们正在将日志发送到 Azure Table 存储。我正在尝试查询这些日志,但发现很难通过 Azure 存储资源管理器进行查询。我无法想象为什么没有 "contains" 选项来过滤 RowKey 列(其中包含我们的实际日志数据。)
我是不是遗漏了什么明显的东西?或者有更好的工具来完成这项工作吗?
不幸的是,Contains
不是 Azure Table 存储中受支持的查询运算符。
有关 supported/unsupported 查询运算符的列表,请参阅此 link:https://docs.microsoft.com/en-us/rest/api/storageservices/query-operators-supported-for-the-table-service。
我们正在将日志发送到 Azure Table 存储。我正在尝试查询这些日志,但发现很难通过 Azure 存储资源管理器进行查询。我无法想象为什么没有 "contains" 选项来过滤 RowKey 列(其中包含我们的实际日志数据。)
我是不是遗漏了什么明显的东西?或者有更好的工具来完成这项工作吗?
Contains
不是 Azure Table 存储中受支持的查询运算符。
有关 supported/unsupported 查询运算符的列表,请参阅此 link:https://docs.microsoft.com/en-us/rest/api/storageservices/query-operators-supported-for-the-table-service。