SAS Program That Copies Data Sets and Catalogs to a Transport File libname test 'joe.mytest.sas'; proc cport library=test; run; The LIBNAME statement assigns the libref TEST to the physical location ...
Many base procedures require an input SAS data set. You specify the input SAS data set using the DATA= option in the procedure statement, for example, proc print data=emp; If you omit the DATA= option ...