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 ...
libname xportin xport 'transport-file'; libname target 'SAS-data-library'; data target.grades; set xportin.grades; run; In the preceding example, the libref XPORTIN points to the location of the ...