Common Issues
Connection issues
"Access Denied: BigQuery Permission denied while getting Drive credentials"
This error occurs when Coupler.io's service account doesn't have permission to access your BigQuery datasets or the destination Google Sheet.
Fix:
Copy the service account email from the error message (e.g.,
[email protected])In Google Cloud Console, go to your BigQuery dataset → Sharing → Add Principal
Paste the service account email and grant it the BigQuery Data Viewer role
If writing to Google Sheets, share the sheet directly with the same service account email
Run the data flow again
"User does not have bigquery.jobs.create permission in project"
Your Service Account is missing the BigQuery Job User role, which is required to execute queries.
Fix:
Go to Google Cloud Console → IAM & Admin → Roles
Find your Service Account
Click Edit and add the BigQuery Job User role
Save and retry the data flow
"Sorry, we cannot connect to Cloud Services without a project ID"
The JSON key file you uploaded is missing required fields or is corrupted.
Fix:
Download a new Service Account JSON key from Google Cloud Console
Delete the old connection in Coupler.io
Re-upload the new JSON key
Retry the data flow
Missing data
Query returns no results or fewer rows than expected
Your SQL query may be filtering out data incorrectly or referencing the wrong table.
Fix:
Run the same SQL query directly in BigQuery's web UI
Check your
WHEREclause — verify dates and filter conditions are correctVerify the table name includes the full path:
project_id.dataset_name.table_nameCheck for typos in column names (BigQuery is case-sensitive for column references)
If using date filters, confirm the date range is not excluding today's data
Data duplicates when using "Append" mode
When appending data, Coupler.io will add new rows even if they already exist in the sheet.
Fix:
If you need to replace all data each run, use Replace mode instead of Append
If using Append, filter your query with a date range to only fetch new/updated records since the last run
Example:
WHERE updated_at > TIMESTAMP_SUB(CURRENT_TIMESTAMP(), INTERVAL 1 DAY)
Permission errors
"Access Denied: Project X: User does not have [permission] in project"
The service account has the wrong permissions or is trying to access a dataset it doesn't have access to.
Fix:
Verify the Service Account has BigQuery Data Viewer role on the specific dataset (not just the project)
If querying multiple datasets, the service account needs viewer access to all of them
Go to each dataset → Sharing → add the service account with BigQuery Data Viewer role
Retry the data flow
"Files /gdrive/id/... not found" when writing to Google Sheets
Coupler.io cannot find your destination Google Sheet.
Fix:
Verify the sheet URL is correct and the sheet is in your Google Drive
Share the sheet explicitly with the service account email from the error
Make sure the sheet is not in a shared drive owned by someone else without your access
Try creating a new, simple test sheet in your Drive and retry
Data discrepancies
Data in Coupler.io import doesn't match BigQuery
The query may be returning incorrect data, or the destination range is too small.
Fix:
Run your SQL query directly in BigQuery to confirm the expected result
If using a cell range (e.g., A1:B10) in Replace mode, verify the range is large enough to hold all results
Check for data type mismatches (e.g., numbers stored as strings)
If the query is correct in BigQuery but wrong in Coupler.io, contact support with your query and a screenshot of both
Only part of the data shows up in Google Sheets
You may have used a cell range that's too small, or the append range is incorrect.
Fix:
In Replace mode, use a large range or just specify the starting cell (e.g., A1) to auto-fit
In Append mode, set the range to an empty row where you want data to start (e.g., A2 for row 2)
Avoid specifying exact ranges like A1:B10 if your data might exceed that size
Rate limits
Queries are slow or timing out
Large queries or scans can take time in BigQuery, especially if scanning many bytes.
Fix:
Optimize your SQL: select only needed columns (avoid
SELECT *)Add WHERE clauses to filter by date or other dimensions early
Break very large queries into smaller, separate data flows
Check BigQuery's query performance in the web UI to identify slow operations
Consider materializing frequently-used aggregations as BigQuery views or tables
"Quota exceeded" or billing errors
Your GCP project may have hit a quota limit or billing is not enabled.
Fix:
Verify billing is enabled for your GCP project (go to Billing in Google Cloud Console)
Check your GCP quotas: Quotas → filter for "BigQuery"
If you've hit a quota, request a quota increase
Review your BigQuery usage in BigQuery Reports to identify expensive queries
Reduce query volume or optimize query efficiency to lower costs
Last updated
Was this helpful?
