Forum Discussion
ScottAllison
Nov 28, 2018Iron Contributor
Row count for all tables
Good morning everyone! I'm looking for a query that will return all DataTypes and their current row count. This is easy to do for individual DataTypes: AzureMetrics | where TimeGenerated <...
- Nov 28, 2018
I think you are looking for this query:
search * | summarize count() by $tableHope it helps,Meir
Meir_Mendelovich
Microsoft
Nov 28, 2018I think you are looking for this query:
search * | summarize count() by $table
Hope it helps,
Meir
ScottAllison
Nov 29, 2018Iron Contributor
This is perfect (and so simple). Thanks!