SQL Pass-Through Facility Specifics for Google BigQuery

Key Information

For general information about this feature, see SQL Pass-Through Facility.

Here are the SQL pass-through facility specifics for the Google BigQuery interface.

CONNECT Statement Example

This example uses the DBCON alias to connect to mysrv1 the Google BigQuery database and execute a query. The connection alias is optional.

proc sql;
   connect to bigquery as dbcon
   (cred_path='/u/BigQuery/xxx-yyy-9e99c10a8888.json' 
    project='project1' schema='Region1');
select * from connection to dbcon
   (select * from customers WHERE customer like '1%');
quit;
Last updated: February 3, 2026