I wonder if BQ limitations have decreased because a former view which had no problem suddenly throws "Resources exceeded during query execution: Table metadata used for the query is too large".
Here is a sample query :
SELECT COUNT(*) FROM [myproject:mydataset.myview]
My view is :
SELECT *
FROM TABLE_QUERY([myproject:daily_mydataset],'REGEXP_MATCH(table_id, "^mytable_")')
I have 61 fields per table and 376 tables (under quota). I deleted about 120 tables so it means that something changed recently (the query worked few days ago).
Maybe quotas have decreased for legacy SQL ?
NOTE : I tried to replace * by fields names in the view, it changed nothing
Thanks