I am the project owner in my organization and I have the BigQuery Admin role at the organization level. How do I query INFORMATION_SCHEMA.TABLE_STORAGE_TIMELINE_BY_PROJECT?
I am using Console and following along with this documentation and just trying to view more BigQuery metadata:
SELECT * FROM `region-us`.INFORMATION_SCHEMA.TABLE_STORAGE_TIMELINE_BY_PROJECT;
Error:
Not found: Table [My Project ID]:region-us.INFORMATION_SCHEMA.TABLE_STORAGE_TIMELINE_BY_PROJECT was not found in location US
I get the same error if I include [My Project ID] in the SELECT statement.
This query does work:
SELECT * FROM `region-us`.INFORMATION_SCHEMA.SCHEMATA

