You can convert
SPD Server 4.
x tables into SAS
9.2 or SAS 9.3 tables by making a LIBNAME connection to your SPD Server
4.
x server, and then making a LIBNAME connection to SAS. After both LIBNAME connections
are established, you can use PROC COPY to copy the tables from your SPD Server
domain to your SAS domain.
LIBNAME spd44 sasspds “<SPD-Server-4.x-domain-name>”
host=localhost
serv=<SPD-Server-4.x-server-port>
user=<user-ID> ;
LIBNAME SAS “<path-to-SAS9.2-or-SAS9.3-directory>”;
PROC COPY in=spd44 out=sas;
After you copy your SPD Server 4.
x tables into
SAS 9.2 or SAS 9.3 tables and store them in a SAS location, you can
install SAS 9.4 and SPD Server 5.3 on your Windows 64-bit platform.
Next, you use the 64-bit Windows environment to create a SAS 9.4 LIBNAME
connection to the directory location where you stored your copied
SPD Server 4.
x tables, and create a SAS 9.4 LIBNAME connection to your SPD Server 5.3 domain. Now
you can use the SAS 9.4 PROC COPY command to restore the former SPD Server 4.
x tables to your SPD Server 5.3 domain in SPD Server 5.3
format.
LIBNAME spd53 sasspds “<SPD-Server-5.3-domain-name>”
host=localhost
serv=<SPD-Server-5.3-server-port>
user=<user-ID> ;
LIBNAME SAS94 “<path-to-SAS9.4-directory>”;
PROC COPY in=SAS94 out=spd53;
SPD Server 5.3 will be able to recognize and use the copied tables in the new SAS
9.4 and SPD
Server 5.3 domain space.