1 The SAS System 14:27 Monday, September 19, 2005 NOTE: Copyright (c) 1999-2001 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software Release 8.2 (TS2M0) Licensed to HARVARD SCHOOL OF PUBLIC HEALTH-INSTRUCTIONAL COMP, Site 0001177014. NOTE: This session is executing on the SunOS 5.9 platform. This message is contained in the SAS news file, and is presented upon initialization. Edit the files "news" in the "misc/base" directory to display site-specific news and information in the program log. The command line option "-nonews" will prevent this display. ---------------------------------------------------------- NOTE: SAS initialization used: real time 0.15 seconds cpu time 0.06 seconds 1 *options obs=100; 2 options nocenter ; 3 4 libname library '~/bulk'; NOTE: Directory for library LIBRARY contains files of mixed engine types. NOTE: Libref LIBRARY was successfully assigned as follows: Engine: V8 Physical Name: /homes/nber/jroth/bulk 5 6 filename raw pipe "unzip -p /homes/data/sipp/1984/sipp84rt3.zip "; 7 8 data library.sip84rt3; 9 10 missing A; 11 infile raw lrecl = 20000 missover ; 12 13 INPUT 14 15 @1 SUSEQNUM $5. 16 @6 SU_ID $9. 17 @15 SU_ROT 1. 18 @2012 PP_ENTRY $2. 19 @2014 PP_PNUM $3. 20 @2085 AGE_1 2. 21 @2095 SEX 1. 22 @2096 RACE 1. 23 ; 24 NOTE: The infile RAW is: Pipe command="unzip -p /homes/data/sipp/1984/sipp84rt3.zip " NOTE: 56197 records were read from the infile RAW. The minimum record length was 5349. The maximum record length was 5946. NOTE: The data set LIBRARY.SIP84RT3 has 56197 observations and 8 variables. NOTE: DATA statement used: real time 1:13.35 2 The SAS System 14:27 Monday, September 19, 2005 cpu time 45.22 seconds 25 proc print data=library.sip84rt3 (obs=6); 26 NOTE: There were 6 observations read from the data set LIBRARY.SIP84RT3. NOTE: The PROCEDURE PRINT printed page 1. NOTE: PROCEDURE PRINT used: real time 0.04 seconds cpu time 0.02 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 1:13.73 cpu time 45.32 seconds