Quantcast
Channel: SQL Server Integration Services forum
Viewing all articles
Browse latest Browse all 24688

SSIS google-bigquery Simba ODBC - two scenarios

$
0
0

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;




Viewing all articles
Browse latest Browse all 24688


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>