Is there a way to query/search all of my bigQuery views definition? Not via API but on the BigQuery query UI?
Thanks
Is there a way to query/search all of my bigQuery views definition? Not via API but on the BigQuery query UI?
Thanks
I've just managed to do this from the BigQuery UI using the following SELECT statement:
select table_name,view_definition
from myDataset.INFORMATION_SCHEMA.VIEWS
The key to getting it to work was the case sensitivity of 'INFORMATION_SCHEMA.VIEWS'.