Friday, 4 September 2020

How can I see the rowcounts for tables in a log analytics workspace?

 The following query returns table names and row counts for all tables with at least one row for the time range selected.

union withsource=sourceTable *
| project sourceTable
| summarize count() by sourceTable


from : https://stackoverflow.com/questions/56706816/how-can-i-see-the-rowcounts-for-tables-in-a-log-analytics-workspace

No comments:

Post a Comment

Python - Get invocation id in azure function

After finding the  right part in the documentation  it was surprisingly easy: def main ( mytimer: func.TimerRequest, context: func.Context ...