Any feature in BigQuery that can migrate a whole dataset in another project w/o executing copy data?

前端 未结 4 1241
刺人心
刺人心 2021-02-08 16:08

While our project grows, at some point we realized that we need to create new projects and reorganize our dataset. One case is that we need to isolate one dataset from others in

4条回答
  •  失恋的感觉
    2021-02-08 16:36

    Nope, there's currently no move or rename operation in BigQuery. The best way to move your data is to copy it and delete the original.

    Follow-up answer: Your batch request created the copy jobs, but you need to wait for them to complete and then observe the result. You can use the BigQuery web UI or run "bq ls -j" from the command line to see recent jobs.

提交回复
热议问题