Skip to main content

QlikView App Dev

Discussion Board for collaboration related to QlikView App Development.

Announcements
Skip the ticket, Chat with Qlik Support instead for instant assistance.
cancel
Showing results for 
Search instead for 
Did you mean: 
m-wise
Partner - Contributor III
Partner - Contributor III

Direct discovery Google bigquery Connector error

When trying to use Direct Discovery together with Google's bigquery i'm gettin the followingg error:

     Connector is not responding !!!

If I just load the data from Bigquery everything runs fine

LOAD

  TransID,

  Alpha;

SQL SELECT

  TransID,

  Alpha

FROM BQtestData;

If I try to use Direct discovery i'm getting a time-out

DIRECT QUERY

DIMENSION

  Alpha

MEASURE

  TransID

FROM BQtestData;

When I hit ReLoad it displays:

     DirectTable << INLBF16 0 lines fetched

     "BQtestData".Alpha (fetching)

then after 30 seconds:

      Connector is not responding !!!

Can someone please help me with this?

This looks like a great feature. But I can't make it to work.

Roy

1 Solution

Accepted Solutions
m-wise
Partner - Contributor III
Partner - Contributor III
Author

Found it.

Use:

SET DirectDistinctSupport=false;

SET DirectIdentifierQuoteChar='[]';

SET DirectIdentifierQuoteStyle='big query';

With the right quotes '

Then it works.

View solution in original post

3 Replies
m-wise
Partner - Contributor III
Partner - Contributor III
Author

Is anyone using Direct discovery with Google Big query?

m-wise
Partner - Contributor III
Partner - Contributor III
Author

Found it.

Use:

SET DirectDistinctSupport=false;

SET DirectIdentifierQuoteChar='[]';

SET DirectIdentifierQuoteStyle='big query';

With the right quotes '

Then it works.

danielmartinroiback
Contributor
Contributor

Please, can you send me an example that it run on Qlik Sense on-premise?

I am trying these and not run:

SET DirectDistinctSupport=false;
SET DirectIdentifierQuoteChar='[]';
SET DirectIdentifierQuoteStyle='big query';

LIB CONNECT TO 'Google_BigQuery_conection';


Direct QUERY dimension chain_id, hotel_id, web_account_type measure ga4_id from core.GA4_accounts;

 

 

Error:

ERROR [42000] [Qlik][BigQuery] (70) Invalid query: Syntax error: Unexpected "[" at [1:24]. If this is a table identifier, escape the name with `, e.g. `table.name` rather than [table.name].

 

Thanks a lot.