-
Notifications
You must be signed in to change notification settings - Fork 200
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bigquery.tables.create
Permission required on appending data to a BigQuery Table
#1277
Comments
Can you please share the |
Hi @isha97, Just a bunch of custom fields:
|
@smic-datalabs-jdcastro Can you please share how df_stream is created? It might give some insight into debugging this issue. |
Hi @vishalkarve15 , kindly see code snippet below for your reference:
Thank you |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I am trying to restrict the permissions of a service account to only be able to execute DML statements (e.g. Insert, Update and Delete queries) to a BigQuery Table.
I have created a custom IAM Role derived from BigQuery Data Editor predefined role and essentially removed other unnecessary permissions including the
bigquery.tables.create
permission.I have assigend this custom role to the Service Account, but upon execution it outputs an error: "Permission bigquery.tables.create denied on dataset..."
Here is the code snippet on how I append data to the table:
Does outputMode("append") really create a table before it loads the data into the table?
The text was updated successfully, but these errors were encountered: