Previous Page | Next Page

PC Files Server Administration

PC Files Server Autostart

SAS running on 64-bit Windows on a local host traditionally cannot access PC files directly on the local host. The required 32-bit ODBC drivers are incompatible with SAS on 64-bit Windows PC Files Server.

The autostart PC Files Server feature facilitates access to PC files on local PCs running SAS on 64-bit Windows. PC Files Server autostart features:

To use PC Files Server autostart features you must:

In the following LIBNAME statement and IMPORT procedure, autostart is triggered by the 'missing' SERVER= and PORT= options.

LIBNAME DB PCFILES PATH='C:\myfile.mdb';

PROC IMPORT OUT=work.test DATAFILE='C:\myfile.mdb' DBMS=ACCESSCS REPLACE;
run;

Previous Page | Next Page | Top of Page