http://ftp.sas.com/samples/A56936 I would like to make data sets. I am using SAS EG. would anybody help to make these? I followed the below steps. But I was not able to. Thanks in advance. /******************************************************************** SAS SQL Procedure User's Guide, Version 8 Publication book code: 56936 This file contains the source code from every example in the book for which output is shown. The examples are keyed to the output number. Unless specified otherwise, all examples assume the following settings: libname sql 'SAS-data-library'; options ls=80 ps=60 nodate nonumber; where the SAS-data-library refers to the location of the example data files. Each example can be run independently, unless otherwise noted. Some of the data sets can be downloaded as a transport file. The name of the transport file is B56936. Any necessary data sets that are not in the transport file are recreated for each example. ********************************************************************/ /* DOWNLOADING AND SETTING UP THE SAMPLES 1. In the Run box, type ftp.sas.com/pub/publications. 2. Right mouse click on B56936 and select Copy to folder. 3. Save the file to a local directory. 4. Start a SAS session. 5. Restore the SAS binary transport file. You can use Program Editor to submit the code: */ /* Substitute the path name of your SASUSER directory for 'your-SASUSER-directory-path' and the appropriate path name and filename for 'your-downloaded-file-location' */ libname new 'your-SASUSER-directory-path'; filename trans 'your-downloaded-file-location'; proc cimport library=new infile=trans; run; /* 6. Assign a libref named SQL to provide access to some of the sample data sets. libname sql 'your-SASUSER-directory-path'; 7. Refer to the book for additional information on working with the samples. ________________________________________________
... View more