question

jaywang66 avatar image
jaywang66 asked

SSIS Google Bigquery Simba ODBC - two scenarios

SSIS ODBC source will show preview of the first 200 row for both scenarios. But it will pull in Columns for only scenario one NOT scenario two. It seems caused by metadata confusion of the query output. Please help.

Google BigQuery Scenarios one:

WITH Example as

(

select 5 as x, 'foo' as y

union all

select 6 as x, 'bar' as y

)

SELECT * FROM Example;Google BigQuery Scenarios two:

CREATE TEMP TABLE Example

(

x INT64,

y STRING

);

INSERT INTO Example

VALUES (5, 'foo');

INSERT INTO Example

VALUES (6, 'bar');

SELECT * FROM Example;

odbc
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

0 Answers

·

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.