Use SAS to connect to
SPD Server and to verify your installation.
In the SAS Program Editor,
submit and run the following code:
%let spdshost=<hostname where SPD Server is running>;
%let spdsport=<your SPD Data Server port>;
libname test sasspds 'tmp'
host="&spdshost"
serv="&spdsport"
user="anonymous";
libname testrl sasspds 'tmp'
host="&spdshost"
serv="&spdsport"
user="anonymous"
locking=yes;
/* include "Installdir"/samples/verify.sas" */
/* to verify dataset access to SPD Server.*/
%inc "Installdir"/samples/verify.sas"
/* include "Installdir"/samples/verptsql.sas */
/* to verify SQL access to SPD Server. */
%inc "Installdir"/samples/verptsql.sas";
endsdas;
: