In this example, the
libref MYLIB uses the DB2 under
z/OS interface to connect to the DB2
database that the SSID= option specifies, with a connection to the
testserver
remote
server.
libname mylib db2 ssid=db2
authid=testuser server=testserver;
proc print data=mylib.staff;
where state='CA';
run;