无法将 Google 个广告连接到 BigQuery
Cannot connect Google Ads to BigQuery
我刚开始使用 GCP,无法从广告创建数据传输。我按照 this documentation 完成了所有步骤,但我总是遇到没有任何解释的问题。
There was a problem saving this transfer config
This transfer config could not be saved. Please try again.
iq
这两个字母有时会变,据我所知'jk'
据我了解,您无法使用控制台创建从 Google Ads 到 BigQuery 的数据传输。
根据 documentation:
,此错误可能是因为您不具备所有必要的权限
- BigQuery Data Transfer Service:
bigquery.transfers.update permissions to create the transfer Both
bigquery.datasets.get and bigquery.datasets.update permissions on the
target dataset The bigquery.admin predefined IAM role includes
bigquery.transfers.update, bigquery.datasets.update and
bigquery.datasets.get permissions. For more information on IAM roles
in BigQuery Data Transfer Service, see Access control reference.
- Google Ads: Read access to the Google Ads Customer ID or manager
account (MCC) that is used in the transfer configuration.
此外,您可以使用 bq
command、
设置传输
bq mk \
--transfer_config \
--project_id=project_id \
--target_dataset=dataset \
--display_name=name \
--params='parameters' \
--data_source=data_source
我刚开始使用 GCP,无法从广告创建数据传输。我按照 this documentation 完成了所有步骤,但我总是遇到没有任何解释的问题。
There was a problem saving this transfer config
This transfer config could not be saved. Please try again.
iq
这两个字母有时会变,据我所知'jk'
据我了解,您无法使用控制台创建从 Google Ads 到 BigQuery 的数据传输。
根据 documentation:
,此错误可能是因为您不具备所有必要的权限
- BigQuery Data Transfer Service:
bigquery.transfers.update permissions to create the transfer Both bigquery.datasets.get and bigquery.datasets.update permissions on the target dataset The bigquery.admin predefined IAM role includes bigquery.transfers.update, bigquery.datasets.update and bigquery.datasets.get permissions. For more information on IAM roles in BigQuery Data Transfer Service, see Access control reference.
- Google Ads: Read access to the Google Ads Customer ID or manager account (MCC) that is used in the transfer configuration.
此外,您可以使用 bq
command、
bq mk \
--transfer_config \
--project_id=project_id \
--target_dataset=dataset \
--display_name=name \
--params='parameters' \
--data_source=data_source