SQL Pass-Through Facility Specifics for Yellowbrick

Key Information

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

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

CONNECT Statement Example for Yellowbrick

This example connects to Yellowbrick and then disconnects from it.

proc sql noerrorstop;
   connect to ybrick as x1(server=mysrv1 port=5432 
      user=mysur1 password='mypwd1' database=mydb1);
disconnect from x1;
quit;
Last updated: February 3, 2026