我正在尝试将Google Spreadsheets中的数据写入BigQuery Table。 我是否可以利用任何资源来学习如何做到这一点?
(像这样的东西会很棒: https://developers.google.com/apps-script/articles/bigquery_tutorial)
感谢。
答案 0 :(得分:0)
到目前为止你尝试了什么?
在编写实际代码之前,我会看到两种方式:
使用https://developers.google.com/apps-script/reference/url-fetch/url-fetch-app和https://developers.google.com/bigquery/loading-data-into-bigquery#loaddatapostrequest通过POST请求发送数据。
否则,您可以将数据上传到Google云端存储,然后插入将其加载到BigQuery中的作业。请查看http://blog.knoldus.com/2013/01/19/google-apps-script-to-store-data-on-google-cloud-sorage/。