Reputation: 245
When exporting data from the Google bigquery table to Google cloud storage in Python, I get the error:
Access Denied: BigQuery BigQuery: Permission denied while writing data.
I checked the JSON key file and it links to the owner of the storage. What can I do?
Upvotes: 2
Views: 1073
Reputation: 397
there are several reason's for this type of error
1. you give the exact path to the GOOGLE_APPLICATION_CREDENTIALS key.
2. Please check that you have writing permission in your project.
3. You have given a correct schema and their value if you writing a table, many of the times this type of error occurred due to incorrect schema value
Upvotes: 0