/* xprt.sas used to create an export file from the dataset bg.census */ /* to import the data adjust the libnames and reverse the IN and OUT */ /* in the PROC COPY */ libname bg '/homea/http/scripts/ippbr/bg'; libname xprt xport '/homea/lhoyle/download/census.trn'; PROC COPY IN=bg OUT=xprt; SELECT census; RUN;