I'm trying to generate a list of account names (attempted, failed, and successful) via Kusto/KQL aggregation.
Intended results are simple-- a single column of string values, sorted alphabetically in ascending order.
As it is cutting me off after 10k results, I am now looking at ways to chunk/paginate this result set.
For each page request, I thought I'd grab the last name in the list and append that to the next query (| where AccountName > "bob.saget"
).
Kusto won't let me do this; it yields a Cannot compare values of types string and string. Try adding explicit casts
error.