I am getting this error, while trying to use a BigQuery view data source in Google Data Studio:
Error Details: There's a query error. Cannot reference a SQL view in a Legacy SQL query.
So, I checked the view's info and the "Use Legacy SQL" is false:
The view is working fine in BigQuery, but it seems that Google Data Studio is running the query in "Legacy mode" instead of "SQL Standard Dialect mode". If this is the problem, how can I change this setting in the Data Studio?
Thanks for your help.
SELECT * FROM YourViewName
) for the time being, which lets you specify to use standard SQL. - Elliott Brossard