How can I find google bigquery dataset size, not table sizes

I can see the details of the table metadata in BigQuery, but to evaluate the project, I hope to see the metadata of the entire dataset.

SELECT * From 'dataset'._TABLES_SUMMARY_WHERE size_bytes>0 isn't working for me. 
+5
source share
1 answer
 SELECT SUM(size_bytes) AS bytes FROM [yourdataset.__TABLES__] 
+8
source

Source: https://habr.com/ru/post/1237593/


All Articles