You can use a LIBNAME statement to read, write, and update server
(remote) data as if it were stored on the client's disk. SAS processes
the data in client memory, which gets overwritten in subsequent client
requests for server data.
The LIBNAME statement
can be used to access SAS data sets across computers that have different
architectures. The LIBNAME statement also provides Read-Only access
to some SAS catalog entry types across computers that have different
architectures.
The LIBNAME statement
provides access to remote server data by associating a SAS library
reference (libref) with a permanent SAS library.
The
SAS/CONNECT client
creates a LIBNAME statement to access a server library that is located
on a
SAS/CONNECT server. The client creates the new libref, REPORTS.
signon rempc;
libname reports 'd:\prod\reports' server=rempc;
The
SAS/CONNECT client
signs on to the
SAS/CONNECT server named REMPC. A server library is
assigned to the client session. The value for SERVER= is the same
as the server session ID that is used in the SIGNON statement.
The
SAS/SHARE client
uses a LIBNAME statement to access a server library via the existing
libref, SALES, which was pre-defined at the
SAS/SHARE server for client
access.
libname sales server=server1;