I am new to BigQuery. I just want to know, whether do we have anything like hive metastore (metadata about all tables, columns and their description) in BigQuery?
相关问题
- How to export crash-free users from firebase?
-
hive: cast array
> into map - Find function in HIVE
- Updating a value in an ARRAY in a BigQuery table
- Import json data with null values
相关文章
- 在hive sql里怎么把"2020-10-26T08:41:19.000Z"这个字符串转换成年月日
- BigQuery - Concatenate multiple rows into a single
- SQL query Frequency Distribution matrix for produc
- Cloudera 5.6: Parquet does not support date. See H
- Where do you get Google Bigquery usage info (mainl
- How do I configure Google BigQuery command line to
- converting to timestamp with time zone failed on A
- Hive error: parseexception missing EOF
BigQuery offers some special tables whose contents represent metadata, such as the list of tables and views in a dataset. The "meta-tables" are read-only. To access metadata about the tables and views in a dataset, use the __TABLES_SUMMARY__ meta-table in a query's SELECT statement. You can run the query using the BigQuery web UI, using the command-line tool's bq query command, or by calling the jobs.insert API method and configuring a query job.
Another more detailed meta-table is __TABLES__ - see example below
for table schema - columns, description - you can utilize bq command line - for example:
with result as
see more at https://cloud.google.com/bigquery/bq-command-line-tool#gettable