Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
Has anyone had any success connecting to a view in a Google BigQuery database using the QlikView BigQuery Connector?
We've had success reading from several flat, dimension tables but as soon as we try and load from a view (which itself is based on tables with nested repeated fields) we get this error.
All of the Google documentation suggests starting the query with "#StandardSQL" but this doesn't work in the QlikView load script... Any ideas?
Actually it does work - but make sure that you put the directive #standardSQL on a separate line immediately after the SQL and
terminate the line with a regular newline.
CUSTOM CONNECT TO "Provider=BigQueryConnector.exe;clientId=......";
SQL
#standardSQL
SELECT (SELECT 1)
;
// A scalar sub select does not work in legacy SQL ...