2017-04-19 75 views
1

我正在使用bigrquery包上傳數據到r,但我也想插入到BigQuery使用該包(或任何其他包如JDBC)的表。插入數據到BigQuery使用R

IM懊悔不已以下腳本

insert_upload_job(project, dataset, "FaceBookAds_AdAccounts_5859_test", facebook_account, billing = project, 
        create_disposition = "CREATE_IF_NEEDED") 

並獲得作業已懊悔不已

$status 
$status$state 
[1] "RUNNING" 


$statistics 
$statistics$creationTime 
[1] "1492590170100" 

$statistics$startTime 
[1] "1492590172646" 

,但我不能看到表中的BigQuery

表包含小於100行

回答

2

我能夠使用bigQueryR包將表插入到BigQuery中。

library(bigQueryR) 

bqr_auth() 
bqr_create_table(projectId=project, datasetId=dataset, "FaceBookAds_AdAccounts_5859_test", facebook_account)