I have a bigquery view that I want to share with data analysts so that they can access its data through data studio. This shared view makes a query to a private view in another dataset which in turn makes a query to a table in another dataset, as per this diagram :
To achieve this, I followed the steps as mentioned in the tutorial Creating an authorized view
- Assign the data analysts to the project-level
bigquery.userrole in IAM - Authorize the shared_view on the private_dataset_1
- Authorize the data analysts group to access the shared_dataset with the BigQuery Data Viewer role
However, querying the shared_view from a data analyst account keeps failing because of insufficient permissions access..
