SITEUSR1 creates libref
SPORT, associates SPORT with the SPD Server engine SASSPDS, and points
to the CONVERSION_AREA domain on an SPD Server host server named HUSKY.
User SITEUSR1 uses a default named service SPDSNAME to locate the
port number of the Name Server and requests a prompt for the password.
The PROC COPY statement
inputs the SAS table LOCAL.RACQUETS and outputs the SPD Server table
SPORT.RACQUETS to the CONVERSION_AREA domain. After the PROC COPY
statement executes, the SAS table becomes two SPD Server table component
files. (See Figure 4.6.)
/* Copy existing SAS table to the SPD Server format. */
LIBNAME sport sasspds 'conversion_area'
server=husky.spdsname
user='siteusr1'
prompt=yes;
proc copy in=local out=sport;
select racquets;
run;