I found Jordan's Q&A very educating regarding BQ objects Meta Data... How do I use the TABLE_QUERY() function in BigQuery?
I went on to analyze my data sets using a query similar to
SELECT *,size_bytes/row_count as avg_row_size
FROM publicdata:samples.__TABLES__
order by avg_row_size desc
I get all 0s in the size_bytes & row_count fields. Both on my dataset (I am charged for nearly 20 TB, so it cannot be 0), and on the public data set.
What am I doing wrong?