【发布时间】:2014-08-05 12:37:43
【问题描述】:
我在 BigQuery Jobs API 中注意到 Copy 任务:
https://developers.google.com/bigquery/docs/reference/v2/jobs#resource
存在“sourceTables”的输入:
"copy": {
"sourceTables": [
{
"projectId": string,
"datasetId": string,
"tableId": string
}
],
但是我们只能定义一个单数的“destinationTable”而不是“destinationTables”:
"destinationTable": {
"projectId": string,
"datasetId": string,
"tableId": string
},
有没有一种方法可以使用上述 API 将多个源表从一个数据集中复制到另一个数据集中?
【问题讨论】:
标签: google-bigquery