In this example, SERVER=,
DATABASE=, PORT=, USER=, and PASSWORD= are the connection options.
libname mydblib greenplm server=gplum04 db=customers port=5432
user=gpusr1 password=gppwd1;
proc print data=mydblib.customers;
where state='CA';
run;
In the next example,
DSN=, USER=, and PASSWORD= are the connection options. The Greenplum
data source is configured in the ODBC Administrator Control Panel
on Windows platforms. It is also configured in the odbc.ini file or
a similarly named configuration file on UNIX platforms.
libname mydblib greenplm DSN=gplumSalesDiv user=gpusr1 password=gppwd1;
proc print data=mydblib.customers;
where state='CA';