SQL Pass-Through Facility Specifics for Impala

Key Information

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

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

CONNECT Statement Examples

This example uses the default Impala port.

proc sql;
   connect to impala (user="myusr1" pw="mypwd1" server=hxpduped) schema=myschema;

This example explicitly specifies the default Impala port.

proc sql;
   connect to impala (user="myusr1" pw="mypwd1" server=hxpduped 
   port=21050 schema=myschema schema=default);
Last updated: February 3, 2026