0

我想知道,是否可以使用 azure-kusto-data 在 python azure func 中运行命令:.show operation details。

我的代码正在运行,但没有打印任何内容。

 client.execute(db, query) for row in response.primary_results[0]:
     print("value at 0 {}".format(row[0]))
     print("\n")
     print("Path:{}".format(row["Path"]))


4

1 回答 1

1

可以使用此 SDK 运行每个有效查询,包括此查询。此代码示例应该可以工作,您应该得到查询结果: .show operation operation-id details

请注意,并非所有控制命令都保留其结果,并且.show operation details command只能在操作成功完成后调用。使用.show operations operation-id命令)在调用此命令之前检查操作的状态。

PS空结果可以在各种情况下返回,例如在导出空表时。

于 2019-10-28T15:20:42.813 回答