Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
DJose1656543464
Contributor
Contributor

tBiqQueryInput asking for elevated permission to run select queries

Hi,

I am running a select query (Eg select * from dataset.tablename) using the tBigQueryInput Component. Big query read only permissions on the data set, should be enough to perform a query like this, but its asking for 'bigquery dataset create permission' as well. Could you please confirm on the minimum permissions required on BigQuery for this particular use case?

 

-Error Log

'google.cloud.bigquery.BigQueryException: Access Denied: User do no have bigquery.dataset.create permission in project

Labels (4)
1 Solution

Accepted Solutions
Tins1980
Contributor II
Contributor II

 

I got this to work by removing the space between "#standardSQL and \r\n.

 

Works:

 

"#standardSQL\r\n

Doesn't work:

 

"#standardSQL \r\n

RTFM:

 

"Must be separated from the query by a newline character"

My update to the FM:

 

"Must be separated from the query by ONLY a newline character"

View solution in original post

4 Replies
Anonymous
Not applicable

Hello,

Could you please clarify in which Talend version/edition you are?

There is a limitation from BigQuery-connector.

As it was explained BigQuery configuration needs to be able to write temporary info into datasets which is impossible with "viewer" role for datasets.

Our Admin rights are able to perform BigQuery operation

Best regards

Sabrina

DJose1656543464
Contributor
Contributor
Author

I'm using Talend studio 7.3.1 (Talend Cloud Big Data)

 

Anonymous
Not applicable

Hello,

You need 'bigquery.datasets.create' permission for your Bigquery account when performing BigQuery operation.

It is the limitation from BigQuery-connector not talend.

Best regards

Sabrina

 

Tins1980
Contributor II
Contributor II

 

I got this to work by removing the space between "#standardSQL and \r\n.

 

Works:

 

"#standardSQL\r\n

Doesn't work:

 

"#standardSQL \r\n

RTFM:

 

"Must be separated from the query by a newline character"

My update to the FM:

 

"Must be separated from the query by ONLY a newline character"