The LIBNAME statement assigns the libref XPTLIB to the physical location XPTLIB.DAT, which stores the entire library to be created. The XPORT engine creates XPTLIB.DAT. The LIBNAME statement assigns ...
libname source 'SAS-data-library'; libname xportout xport 'transport-file'; data xportout.grades; set source.grades; run; In the preceding example, the libref SOURCE points to the original location of ...