Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/ssis/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Ssis 我们是否有任何本机连接机制来使用SSI将数据加载到GCP BigQuery_Ssis_Google Bigquery - Fatal编程技术网

Ssis 我们是否有任何本机连接机制来使用SSI将数据加载到GCP BigQuery

Ssis 我们是否有任何本机连接机制来使用SSI将数据加载到GCP BigQuery,ssis,google-bigquery,Ssis,Google Bigquery,我们是否有任何本机连接机制来使用SSI将数据加载到GCP BigQuery 谢谢。我们也需要将SSIS中的数据发布到BigQuery,我们计划了一个shell脚本,该脚本将从SQL server中导出数据,并使用gcloud实用程序通过批导入(免费)导入BigQuery 加载一个表的示例命令: sqlcmd -S localhost -d reporting -E -Q "select * from location_dim" -o "localtion_dim.c

我们是否有任何本机连接机制来使用SSI将数据加载到GCP BigQuery


谢谢。

我们也需要将SSIS中的数据发布到BigQuery,我们计划了一个shell脚本,该脚本将从SQL server中导出数据,并使用gcloud实用程序通过批导入(免费)导入BigQuery

加载一个表的示例命令:

sqlcmd -S localhost -d reporting -E -Q "select * from location_dim" -o "localtion_dim.csv" -h-1 -s","

gsutil cp C:\Users\Administrator\localtion_dim.csv gs://ssis/

bq --location=US load --source_format=CSV cube_dev.location_dim gs://event-functions-spike/localtion_dim.csv ID:STRING,OFFICE:STRING,MARKET:STRING,COUNTRY:STRING,REGION:STRING,NAME:STRING

我们需要将数据从SSIS发布到BigQuery,我们计划了一个shell脚本,该脚本将从SQL server导出数据,并使用gcloud实用程序通过批导入(免费)导入BigQuery

加载一个表的示例命令:

sqlcmd -S localhost -d reporting -E -Q "select * from location_dim" -o "localtion_dim.csv" -h-1 -s","

gsutil cp C:\Users\Administrator\localtion_dim.csv gs://ssis/

bq --location=US load --source_format=CSV cube_dev.location_dim gs://event-functions-spike/localtion_dim.csv ID:STRING,OFFICE:STRING,MARKET:STRING,COUNTRY:STRING,REGION:STRING,NAME:STRING