Testing the Quickstart Configuration

Use SAS to connect to SPD Server and verify your installation.
In the SAS Program Editor, submit the following code. Be sure to change “InstallDir” references to a real directory path before submitting the requests.
%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;
Last updated: February 3, 2017