'View only Rights in BigQuery

My client has given me readonly rights to bigquery data. BigQuery is asking to register for their service. Do I need to be a paid user to access the data

In simple words, how to access their data? enter image description here



Solution 1:[1]

Your client needs to execute this query to give you permission to the dataset.

GRANT `roles/bigquery.metadataViewer`
ON schema `project_name.dataset_name`
TO "user:[email protected]"

After this query. You need to add the project in BigQuery.

  • Above the option +Add

  • Pin a Project

  • Enter Project Name

enter image description here

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Raul Saucedo