In Oracle and SQL Server, it is possible to search all database objects for references of specific text: SELECT * FROM all_source WHERE UPPER(text) LIKE '%blah%'
I would like to do the same thing in Google BigQuery. Is it possible to search every field of every table for a particular value in BigQuery?