Migrating Non Partitioned Streaming Table to Partitioned Table Bigquery
问题 I have a legacy unpartitioned big query table that streams logs from various sources (Let's say Table BigOldA ). The aim is to transfer it to a new day partition table (Let's say PartByDay ) which is done with the help of the following link: https://cloud.google.com/bigquery/docs/creating-column-partitions#creating_a_partitioned_table_from_a_query_result bq query --allow_large_results --replace=true --destination_table <project>:<data-set>.<PartByDay> --time_partitioning_field REQUEST