Use SAS to connect to
SPD Server and to verify your installation.
In the SAS Program Editor,
submit and run the following:
%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 "<install_dir>\samples\verify.sas";
/* Include InstallDir\samples\verptsql.sas */
/* to verify SQL access to SPD Server. */
%inc "<install_dir>\samples\verptsql.sas";
endsas;