SAS Log on Sending Host
1 LIBNAME source 'SAS-library-on-sending-host '; NOTE: Libref SOURCE was successfully assigned as follows: Engine: V9 Physical Name: SAS-library-on-sending-host 2 LIBNAME xptout xport 'filename-on-sending-host'; NOTE: Libref XPTOUT was successfully assigned as follows: Engine: XPORT Physical Name: filename-on-sending-host 3 proc copy in=source out=xptout memtype=data; 4 select bonus budget salary; 5 run; NOTE: Copying SOURCE.BONUS to XPTOUT.BONUS (memtype=DATA). NOTE: The data set XPTOUT.BONUS has 1 observations and 3 variables. NOTE: Copying SOURCE.BUDGET to XPTOUT.BUDGET (memtype=DATA). NOTE: The data set XPTOUT.BUDGET has 1 observations and 3 variables. NOTE: Copying SOURCE.SALARY to XPTOUT.SALARY (memtype=DATA). NOTE: The data set XPTOUT.SALARY has 1 observations and 3 variables. |