WayEasy Corporation
WayEasy Corporation

Reputation: 51

How do I add a description to a table from the command line?

I am massing copying government open data to BigQuery, see https://bigquery.cloud.google.com/dataset/freeopendata-161213:copy_of_socrata_data and https://github.com/wayeasycorp/FreeOpenData/blob/master/etl/socrata/copy_all_datasets.py Using the command line how do I add a description to a table?

Upvotes: 1

Views: 150

Answers (1)

Shamshad Alam
Shamshad Alam

Reputation: 1874

You should try:

bq update --description "Description of the table" dataset.table

PS: I assumed that you have installed google cloud SDK and configured it correctly

Upvotes: 1

Related Questions