We have a BigQuery dataset that has some long list of tables (with data) in it. Since I am taking over a data pipeline, which I want to familiarize myself with by doing tests, I want to duplicate those dataset/tables without copying-truncating the tables. Essentially, I want to re-create those tables in a test dataset using their schema. How can this be done in bq
client?
Creating an empty table based on another table's schema in BigQuery
1.8k Views Asked by oikonomiyaki At
1
You have a couple of options considering you don't want to copy the data but the schema:
1.- extract the schema for each table and then create new ones just empty.
2.- run a query with LIMIT 0 and setting a destination table.