This example illustrates how to create a transport file on a host and read it on another host. In order for this example to work correctly, the transport file must have certain characteristics, as ...
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 ...