1 The SAS System 15:32 Tuesday, April 3, 2007 NOTE: Copyright (c) 2002-2003 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) 9.1 (TS1M3) Licensed to HARVARD SCHOOL OF PUBLIC HEALTH-INSTRUCTIONAL COMP, Site 0001177014. NOTE: This session is executing on the SunOS 5.9 platform. NOTE: SAS 9.1.3 Service Pack 3 ----------------------------------------------------------------------- NBER NOTE: sas now defaults to sas9. sas8 or sas6 will invoke sas version 8 or 6 respectively. - 2005/10/21 ----------------------------------------------------------------------- You are running SAS 9. Some SAS 8 files will be automatically converted by the V9 engine; others are incompatible. Please see http://support.sas.com/rnd/migration/planning/platform/64bit.html PROC MIGRATE will preserve current SAS file attributes and is recommended for converting all your SAS libraries from any SAS 8 release to SAS 9. For details and examples, please see http://support.sas.com/rnd/migration/index.html This message is contained in the SAS news file, and is presented upon initialization. Edit the file "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.37 seconds cpu time 0.12 seconds 1 *options obs=100 ; 2 options nocenter ; 3 4 /*------------------------------------------------ 5 by Jean Roth Wed Oct 11 11:31:00 EDT 2006 6 This program reads the 2003 CES Interview Data Files 7 FMLY = Consumer Unit (CU) Characteristics and Income File 8 MEMB = Member Characteristics and Income File 9 MTAB = Montly Expenditures 10 ITAB = Income 11 Report errors to jroth@nber.org 12 This program is distributed under the GNU GPL. 13 See end of this file and 14 http://www.gnu.org/licenses/ for details. 15 ----------------------------------------------- */ 16 17 * The following line should contain the directory 18 where the SAS file is to be stored ; 19 20 libname library "./"; NOTE: Libref LIBRARY was successfully assigned as follows: Engine: V9 Physical Name: /disk/nber10/SCCS/ces/2003/interview 2 The SAS System 15:32 Tuesday, April 3, 2007 21 22 * The following line should contain 23 the complete path and name of the raw data file. 24 On a PC, use backslashes in paths as in C:\ ; 25 26 %macro loop(qtr=,ty=); 27 %let dataset=&ty.&qtr.; 28 %let includeit=i&ty..txt; 29 %if &qtr.=031x and (&ty.=fmlyi or &ty.=membi) %then %do; %let includeit=i&ty.x.txt; %end; 30 31 DATA &dataset ; 32 33 INFILE "/homes/data/ces/2003/interview/&dataset..txt" LRECL = 20000 ; 34 35 INPUT 36 %include "&includeit."; 37 ; 38 39 proc sort data=&dataset. out=library.&dataset.; 40 by newid; 41 42 proc print data=library.&dataset. (obs=5); 43 proc contents data=library.&dataset.; 44 %mend; 45 %loop(qtr=031x,ty=fmlyi); NOTE: The infile "/homes/data/ces/2003/interview/fmlyi031x.txt" is: File Name=/homes/data/ces/2003/interview/fmlyi031x.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=38683424 NOTE: 8086 records were read from the infile "/homes/data/ces/2003/interview/fmlyi031x.txt". The minimum record length was 4783. The maximum record length was 4783. NOTE: The data set WORK.FMLYI031X has 8086 observations and 693 variables. NOTE: DATA statement used (Total process time): real time 3.39 seconds cpu time 3.29 seconds NOTE: There were 8086 observations read from the data set WORK.FMLYI031X. NOTE: The data set LIBRARY.FMLYI031X has 8086 observations and 693 variables. NOTE: PROCEDURE SORT used (Total process time): real time 3.81 seconds cpu time 0.93 seconds NOTE: There were 5 observations read from the data set LIBRARY.FMLYI031X. NOTE: The PROCEDURE PRINT printed pages 1-9. NOTE: PROCEDURE PRINT used (Total process time): real time 0.22 seconds cpu time 0.10 seconds 739 %loop(qtr=032,ty=fmlyi); NOTE: The PROCEDURE CONTENTS printed pages 10-24. 3 The SAS System 15:32 Tuesday, April 3, 2007 NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.13 seconds cpu time 0.11 seconds NOTE: The infile "/homes/data/ces/2003/interview/fmlyi032.txt" is: File Name=/homes/data/ces/2003/interview/fmlyi032.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=39234252 NOTE: 8196 records were read from the infile "/homes/data/ces/2003/interview/fmlyi032.txt". The minimum record length was 4786. The maximum record length was 4786. NOTE: The data set WORK.FMLYI032 has 8196 observations and 696 variables. NOTE: DATA statement used (Total process time): real time 5.93 seconds cpu time 3.62 seconds NOTE: There were 8196 observations read from the data set WORK.FMLYI032. NOTE: The data set LIBRARY.FMLYI032 has 8196 observations and 696 variables. NOTE: PROCEDURE SORT used (Total process time): real time 3.73 seconds cpu time 0.82 seconds NOTE: There were 5 observations read from the data set LIBRARY.FMLYI032. NOTE: The PROCEDURE PRINT printed pages 25-33. NOTE: PROCEDURE PRINT used (Total process time): real time 0.44 seconds cpu time 0.04 seconds 1436 %loop(qtr=033,ty=fmlyi); NOTE: The PROCEDURE CONTENTS printed pages 34-48. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.11 seconds cpu time 0.08 seconds NOTE: The infile "/homes/data/ces/2003/interview/fmlyi033.txt" is: File Name=/homes/data/ces/2003/interview/fmlyi033.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=38640664 NOTE: 8072 records were read from the infile "/homes/data/ces/2003/interview/fmlyi033.txt". The minimum record length was 4786. The maximum record length was 4786. NOTE: The data set WORK.FMLYI033 has 8072 observations and 696 variables. NOTE: DATA statement used (Total process time): real time 7.50 seconds cpu time 3.43 seconds 4 The SAS System 15:32 Tuesday, April 3, 2007 NOTE: There were 8072 observations read from the data set WORK.FMLYI033. NOTE: The data set LIBRARY.FMLYI033 has 8072 observations and 696 variables. NOTE: PROCEDURE SORT used (Total process time): real time 4.92 seconds cpu time 0.82 seconds NOTE: There were 5 observations read from the data set LIBRARY.FMLYI033. NOTE: The PROCEDURE PRINT printed pages 49-57. NOTE: PROCEDURE PRINT used (Total process time): real time 0.08 seconds cpu time 0.03 seconds 2133 %loop(qtr=034,ty=fmlyi); NOTE: The PROCEDURE CONTENTS printed pages 58-72. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.09 seconds cpu time 0.09 seconds NOTE: The infile "/homes/data/ces/2003/interview/fmlyi034.txt" is: File Name=/homes/data/ces/2003/interview/fmlyi034.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=38506628 NOTE: 8044 records were read from the infile "/homes/data/ces/2003/interview/fmlyi034.txt". The minimum record length was 4786. The maximum record length was 4786. NOTE: The data set WORK.FMLYI034 has 8044 observations and 696 variables. NOTE: DATA statement used (Total process time): real time 7.09 seconds cpu time 3.37 seconds NOTE: There were 8044 observations read from the data set WORK.FMLYI034. NOTE: The data set LIBRARY.FMLYI034 has 8044 observations and 696 variables. NOTE: PROCEDURE SORT used (Total process time): real time 4.16 seconds cpu time 0.95 seconds NOTE: There were 5 observations read from the data set LIBRARY.FMLYI034. NOTE: The PROCEDURE PRINT printed pages 73-81. NOTE: PROCEDURE PRINT used (Total process time): real time 0.06 seconds cpu time 0.03 seconds 2830 %loop(qtr=041,ty=fmlyi); NOTE: The PROCEDURE CONTENTS printed pages 82-96. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.11 seconds 5 The SAS System 15:32 Tuesday, April 3, 2007 cpu time 0.09 seconds NOTE: The infile "/homes/data/ces/2003/interview/fmlyi041.txt" is: File Name=/homes/data/ces/2003/interview/fmlyi041.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=38181112 NOTE: 7976 records were read from the infile "/homes/data/ces/2003/interview/fmlyi041.txt". The minimum record length was 4786. The maximum record length was 4786. NOTE: The data set WORK.FMLYI041 has 7976 observations and 696 variables. NOTE: DATA statement used (Total process time): real time 6.89 seconds cpu time 3.56 seconds NOTE: There were 7976 observations read from the data set WORK.FMLYI041. NOTE: The data set LIBRARY.FMLYI041 has 7976 observations and 696 variables. NOTE: PROCEDURE SORT used (Total process time): real time 4.20 seconds cpu time 0.86 seconds NOTE: There were 5 observations read from the data set LIBRARY.FMLYI041. NOTE: At least one W.D format was too small for the number to be printed. The decimal may be shifted by the "BEST" format. NOTE: The PROCEDURE PRINT printed pages 97-105. NOTE: PROCEDURE PRINT used (Total process time): real time 0.05 seconds cpu time 0.04 seconds 3527 %loop(qtr=031x,ty=membi); NOTE: The PROCEDURE CONTENTS printed pages 106-120. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.09 seconds cpu time 0.08 seconds NOTE: The infile "/homes/data/ces/2003/interview/membi031x.txt" is: File Name=/homes/data/ces/2003/interview/membi031x.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=6384144 NOTE: 20462 records were read from the infile "/homes/data/ces/2003/interview/membi031x.txt". The minimum record length was 311. The maximum record length was 311. NOTE: The data set WORK.MEMBI031X has 20462 observations and 117 variables. NOTE: DATA statement used (Total process time): real time 0.74 seconds cpu time 0.74 seconds 6 The SAS System 15:32 Tuesday, April 3, 2007 NOTE: There were 20462 observations read from the data set WORK.MEMBI031X. NOTE: The data set LIBRARY.MEMBI031X has 20462 observations and 117 variables. NOTE: PROCEDURE SORT used (Total process time): real time 1.27 seconds cpu time 0.24 seconds NOTE: There were 5 observations read from the data set LIBRARY.MEMBI031X. NOTE: The PROCEDURE PRINT printed page 121. NOTE: PROCEDURE PRINT used (Total process time): real time 0.02 seconds cpu time 0.01 seconds 3647 %loop(qtr=032,ty=membi); NOTE: The PROCEDURE CONTENTS printed pages 122-124. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.03 seconds cpu time 0.02 seconds NOTE: The infile "/homes/data/ces/2003/interview/membi032.txt" is: File Name=/homes/data/ces/2003/interview/membi032.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=6897964 NOTE: 20777 records were read from the infile "/homes/data/ces/2003/interview/membi032.txt". The minimum record length was 331. The maximum record length was 331. NOTE: The data set WORK.MEMBI032 has 20777 observations and 137 variables. NOTE: DATA statement used (Total process time): real time 1.28 seconds cpu time 0.87 seconds NOTE: There were 20777 observations read from the data set WORK.MEMBI032. NOTE: The data set LIBRARY.MEMBI032 has 20777 observations and 137 variables. NOTE: PROCEDURE SORT used (Total process time): real time 1.15 seconds cpu time 0.29 seconds NOTE: There were 5 observations read from the data set LIBRARY.MEMBI032. NOTE: The PROCEDURE PRINT printed page 125. NOTE: PROCEDURE PRINT used (Total process time): real time 0.02 seconds cpu time 0.01 seconds 3787 %loop(qtr=033,ty=membi); NOTE: The PROCEDURE CONTENTS printed pages 126-129. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.04 seconds cpu time 0.02 seconds 7 The SAS System 15:32 Tuesday, April 3, 2007 NOTE: The infile "/homes/data/ces/2003/interview/membi033.txt" is: File Name=/homes/data/ces/2003/interview/membi033.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=6760848 NOTE: 20364 records were read from the infile "/homes/data/ces/2003/interview/membi033.txt". The minimum record length was 331. The maximum record length was 331. NOTE: The data set WORK.MEMBI033 has 20364 observations and 137 variables. NOTE: DATA statement used (Total process time): real time 1.04 seconds cpu time 0.90 seconds NOTE: There were 20364 observations read from the data set WORK.MEMBI033. NOTE: The data set LIBRARY.MEMBI033 has 20364 observations and 137 variables. NOTE: PROCEDURE SORT used (Total process time): real time 1.17 seconds cpu time 0.32 seconds NOTE: There were 5 observations read from the data set LIBRARY.MEMBI033. NOTE: The PROCEDURE PRINT printed page 130. NOTE: PROCEDURE PRINT used (Total process time): real time 0.02 seconds cpu time 0.01 seconds 3927 %loop(qtr=034,ty=membi); NOTE: The PROCEDURE CONTENTS printed pages 131-134. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.04 seconds cpu time 0.03 seconds NOTE: The infile "/homes/data/ces/2003/interview/membi034.txt" is: File Name=/homes/data/ces/2003/interview/membi034.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=6744248 NOTE: 20314 records were read from the infile "/homes/data/ces/2003/interview/membi034.txt". The minimum record length was 331. The maximum record length was 331. NOTE: The data set WORK.MEMBI034 has 20314 observations and 137 variables. NOTE: DATA statement used (Total process time): real time 1.53 seconds cpu time 0.84 seconds NOTE: There were 20314 observations read from the data set WORK.MEMBI034. NOTE: The data set LIBRARY.MEMBI034 has 20314 observations and 137 variables. 8 The SAS System 15:32 Tuesday, April 3, 2007 NOTE: PROCEDURE SORT used (Total process time): real time 1.27 seconds cpu time 0.30 seconds NOTE: There were 5 observations read from the data set LIBRARY.MEMBI034. NOTE: The PROCEDURE PRINT printed page 135. NOTE: PROCEDURE PRINT used (Total process time): real time 0.04 seconds cpu time 0.01 seconds 4067 %loop(qtr=041,ty=membi); NOTE: The PROCEDURE CONTENTS printed pages 136-139. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.04 seconds cpu time 0.02 seconds NOTE: The infile "/homes/data/ces/2003/interview/membi041.txt" is: File Name=/homes/data/ces/2003/interview/membi041.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=6672536 NOTE: 20098 records were read from the infile "/homes/data/ces/2003/interview/membi041.txt". The minimum record length was 331. The maximum record length was 331. NOTE: The data set WORK.MEMBI041 has 20098 observations and 137 variables. NOTE: DATA statement used (Total process time): real time 1.26 seconds cpu time 0.84 seconds NOTE: There were 20098 observations read from the data set WORK.MEMBI041. NOTE: The data set LIBRARY.MEMBI041 has 20098 observations and 137 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.87 seconds cpu time 0.34 seconds NOTE: There were 5 observations read from the data set LIBRARY.MEMBI041. NOTE: The PROCEDURE PRINT printed page 140. NOTE: PROCEDURE PRINT used (Total process time): real time 0.24 seconds cpu time 0.02 seconds 4207 %loop(qtr=031x,ty=mtabi); NOTE: The PROCEDURE CONTENTS printed pages 141-144. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.09 seconds cpu time 0.03 seconds 9 The SAS System 15:32 Tuesday, April 3, 2007 NOTE: The infile "/homes/data/ces/2003/interview/mtabi031x.txt" is: File Name=/homes/data/ces/2003/interview/mtabi031x.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=26476596 NOTE: 735461 records were read from the infile "/homes/data/ces/2003/interview/mtabi031x.txt". The minimum record length was 35. The maximum record length was 35. NOTE: The data set WORK.MTABI031X has 735461 observations and 8 variables. NOTE: DATA statement used (Total process time): real time 4.51 seconds cpu time 3.33 seconds NOTE: There were 735461 observations read from the data set WORK.MTABI031X. NOTE: The data set LIBRARY.MTABI031X has 735461 observations and 8 variables. NOTE: PROCEDURE SORT used (Total process time): real time 3.66 seconds cpu time 2.62 seconds NOTE: There were 5 observations read from the data set LIBRARY.MTABI031X. NOTE: The PROCEDURE PRINT printed page 145. NOTE: PROCEDURE PRINT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds 4217 %loop(qtr=032,ty=mtabi); NOTE: The PROCEDURE CONTENTS printed page 146. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.02 seconds cpu time 0.03 seconds NOTE: The infile "/homes/data/ces/2003/interview/mtabi032.txt" is: File Name=/homes/data/ces/2003/interview/mtabi032.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=24375780 NOTE: 677105 records were read from the infile "/homes/data/ces/2003/interview/mtabi032.txt". The minimum record length was 35. The maximum record length was 35. NOTE: The data set WORK.MTABI032 has 677105 observations and 8 variables. NOTE: DATA statement used (Total process time): real time 4.31 seconds cpu time 3.17 seconds NOTE: There were 677105 observations read from the data set WORK.MTABI032. NOTE: The data set LIBRARY.MTABI032 has 677105 observations and 8 variables. NOTE: PROCEDURE SORT used (Total process time): real time 3.62 seconds 10 The SAS System 15:32 Tuesday, April 3, 2007 cpu time 2.49 seconds NOTE: There were 5 observations read from the data set LIBRARY.MTABI032. NOTE: The PROCEDURE PRINT printed page 147. NOTE: PROCEDURE PRINT used (Total process time): real time 0.01 seconds cpu time 0.00 seconds 4227 %loop(qtr=033,ty=mtabi); NOTE: The PROCEDURE CONTENTS printed page 148. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: The infile "/homes/data/ces/2003/interview/mtabi033.txt" is: File Name=/homes/data/ces/2003/interview/mtabi033.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=24008220 NOTE: 666895 records were read from the infile "/homes/data/ces/2003/interview/mtabi033.txt". The minimum record length was 35. The maximum record length was 35. NOTE: The data set WORK.MTABI033 has 666895 observations and 8 variables. NOTE: DATA statement used (Total process time): real time 3.79 seconds cpu time 2.94 seconds NOTE: There were 666895 observations read from the data set WORK.MTABI033. NOTE: The data set LIBRARY.MTABI033 has 666895 observations and 8 variables. NOTE: PROCEDURE SORT used (Total process time): real time 3.29 seconds cpu time 2.47 seconds NOTE: There were 5 observations read from the data set LIBRARY.MTABI033. NOTE: The PROCEDURE PRINT printed page 149. NOTE: PROCEDURE PRINT used (Total process time): real time 0.01 seconds cpu time 0.02 seconds 4237 %loop(qtr=034,ty=mtabi); NOTE: The PROCEDURE CONTENTS printed page 150. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.02 seconds cpu time 0.02 seconds NOTE: The infile "/homes/data/ces/2003/interview/mtabi034.txt" is: 11 The SAS System 15:32 Tuesday, April 3, 2007 File Name=/homes/data/ces/2003/interview/mtabi034.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=23994000 NOTE: 666500 records were read from the infile "/homes/data/ces/2003/interview/mtabi034.txt". The minimum record length was 35. The maximum record length was 35. NOTE: The data set WORK.MTABI034 has 666500 observations and 8 variables. NOTE: DATA statement used (Total process time): real time 4.58 seconds cpu time 2.98 seconds NOTE: There were 666500 observations read from the data set WORK.MTABI034. NOTE: The data set LIBRARY.MTABI034 has 666500 observations and 8 variables. NOTE: PROCEDURE SORT used (Total process time): real time 3.37 seconds cpu time 2.40 seconds NOTE: There were 5 observations read from the data set LIBRARY.MTABI034. NOTE: The PROCEDURE PRINT printed page 151. NOTE: PROCEDURE PRINT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds 4247 %loop(qtr=041,ty=mtabi); NOTE: The PROCEDURE CONTENTS printed page 152. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.02 seconds cpu time 0.02 seconds NOTE: The infile "/homes/data/ces/2003/interview/mtabi041.txt" is: File Name=/homes/data/ces/2003/interview/mtabi041.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=24833412 NOTE: 689817 records were read from the infile "/homes/data/ces/2003/interview/mtabi041.txt". The minimum record length was 35. The maximum record length was 35. NOTE: The data set WORK.MTABI041 has 689817 observations and 8 variables. NOTE: DATA statement used (Total process time): real time 4.78 seconds cpu time 2.95 seconds NOTE: There were 689817 observations read from the data set WORK.MTABI041. NOTE: The data set LIBRARY.MTABI041 has 689817 observations and 8 variables. NOTE: PROCEDURE SORT used (Total process time): real time 3.85 seconds cpu time 2.40 seconds 12 The SAS System 15:32 Tuesday, April 3, 2007 NOTE: There were 5 observations read from the data set LIBRARY.MTABI041. NOTE: The PROCEDURE PRINT printed page 153. NOTE: PROCEDURE PRINT used (Total process time): real time 0.03 seconds cpu time 0.03 seconds 4257 %loop(qtr=031x,ty=itabi); NOTE: The PROCEDURE CONTENTS printed page 154. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.02 seconds cpu time 0.02 seconds NOTE: The infile "/homes/data/ces/2003/interview/itabi031x.txt" is: File Name=/homes/data/ces/2003/interview/itabi031x.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=14220360 NOTE: 406296 records were read from the infile "/homes/data/ces/2003/interview/itabi031x.txt". The minimum record length was 34. The maximum record length was 34. NOTE: SAS went to a new line when INPUT statement reached past the end of a line. NOTE: The data set WORK.ITABI031X has 203148 observations and 8 variables. NOTE: DATA statement used (Total process time): real time 2.06 seconds cpu time 1.25 seconds NOTE: There were 203148 observations read from the data set WORK.ITABI031X. NOTE: The data set LIBRARY.ITABI031X has 203148 observations and 8 variables. NOTE: PROCEDURE SORT used (Total process time): real time 1.06 seconds cpu time 0.81 seconds NOTE: There were 5 observations read from the data set LIBRARY.ITABI031X. NOTE: The PROCEDURE PRINT printed page 155. NOTE: PROCEDURE PRINT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds 4267 %loop(qtr=032,ty=itabi); NOTE: The PROCEDURE CONTENTS printed page 156. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.03 seconds cpu time 0.00 seconds NOTE: The infile "/homes/data/ces/2003/interview/itabi032.txt" is: File Name=/homes/data/ces/2003/interview/itabi032.txt, 13 The SAS System 15:32 Tuesday, April 3, 2007 Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=15455370 NOTE: 441582 records were read from the infile "/homes/data/ces/2003/interview/itabi032.txt". The minimum record length was 34. The maximum record length was 34. NOTE: SAS went to a new line when INPUT statement reached past the end of a line. NOTE: The data set WORK.ITABI032 has 220791 observations and 8 variables. NOTE: DATA statement used (Total process time): real time 2.21 seconds cpu time 1.37 seconds NOTE: There were 220791 observations read from the data set WORK.ITABI032. NOTE: The data set LIBRARY.ITABI032 has 220791 observations and 8 variables. NOTE: PROCEDURE SORT used (Total process time): real time 1.18 seconds cpu time 0.82 seconds NOTE: There were 5 observations read from the data set LIBRARY.ITABI032. NOTE: The PROCEDURE PRINT printed page 157. NOTE: PROCEDURE PRINT used (Total process time): real time 0.02 seconds cpu time 0.00 seconds 4277 %loop(qtr=033,ty=itabi); NOTE: The PROCEDURE CONTENTS printed page 158. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.04 seconds cpu time 0.02 seconds NOTE: The infile "/homes/data/ces/2003/interview/itabi033.txt" is: File Name=/homes/data/ces/2003/interview/itabi033.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=15243585 NOTE: LOST CARD. NEWID=1436832 REFMO=08 REFYR=2003 UCC=980350 PUBFLAG=2 VALUE=8.3333 VALUE_= GIFT= _ERROR_=1 _N_=217766 NOTE: 435531 records were read from the infile "/homes/data/ces/2003/interview/itabi033.txt". The minimum record length was 34. The maximum record length was 34. NOTE: SAS went to a new line when INPUT statement reached past the end of a line. NOTE: The data set WORK.ITABI033 has 217765 observations and 8 variables. NOTE: DATA statement used (Total process time): real time 2.51 seconds cpu time 1.47 seconds NOTE: There were 217765 observations read from the data set WORK.ITABI033. NOTE: The data set LIBRARY.ITABI033 has 217765 observations and 8 variables. NOTE: PROCEDURE SORT used (Total process time): 14 The SAS System 15:32 Tuesday, April 3, 2007 real time 1.54 seconds cpu time 0.87 seconds NOTE: There were 5 observations read from the data set LIBRARY.ITABI033. NOTE: The PROCEDURE PRINT printed page 159. NOTE: PROCEDURE PRINT used (Total process time): real time 0.04 seconds cpu time 0.02 seconds 4287 %loop(qtr=034,ty=itabi); NOTE: The PROCEDURE CONTENTS printed page 160. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.17 seconds cpu time 0.01 seconds NOTE: The infile "/homes/data/ces/2003/interview/itabi034.txt" is: File Name=/homes/data/ces/2003/interview/itabi034.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=15245790 NOTE: 435594 records were read from the infile "/homes/data/ces/2003/interview/itabi034.txt". The minimum record length was 34. The maximum record length was 34. NOTE: SAS went to a new line when INPUT statement reached past the end of a line. NOTE: The data set WORK.ITABI034 has 217797 observations and 8 variables. NOTE: DATA statement used (Total process time): real time 2.24 seconds cpu time 1.41 seconds NOTE: There were 217797 observations read from the data set WORK.ITABI034. NOTE: The data set LIBRARY.ITABI034 has 217797 observations and 8 variables. NOTE: PROCEDURE SORT used (Total process time): real time 1.60 seconds cpu time 0.87 seconds NOTE: There were 5 observations read from the data set LIBRARY.ITABI034. NOTE: The PROCEDURE PRINT printed page 161. NOTE: PROCEDURE PRINT used (Total process time): real time 0.01 seconds cpu time 0.00 seconds 4297 %loop(qtr=041,ty=itabi); NOTE: The PROCEDURE CONTENTS printed page 162. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.02 seconds cpu time 0.02 seconds 15 The SAS System 15:32 Tuesday, April 3, 2007 NOTE: The infile "/homes/data/ces/2003/interview/itabi041.txt" is: File Name=/homes/data/ces/2003/interview/itabi041.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=15159585 NOTE: LOST CARD. NEWID=1487002 REFMO=01 REFYR=2004 UCC=980350 PUBFLAG=2 VALUE=8.3333 VALUE_= GIFT= _ERROR_=1 _N_=216566 NOTE: 433131 records were read from the infile "/homes/data/ces/2003/interview/itabi041.txt". The minimum record length was 34. The maximum record length was 34. NOTE: SAS went to a new line when INPUT statement reached past the end of a line. NOTE: The data set WORK.ITABI041 has 216565 observations and 8 variables. NOTE: DATA statement used (Total process time): real time 2.80 seconds cpu time 1.32 seconds NOTE: There were 216565 observations read from the data set WORK.ITABI041. NOTE: The data set LIBRARY.ITABI041 has 216565 observations and 8 variables. NOTE: PROCEDURE SORT used (Total process time): real time 2.22 seconds cpu time 0.78 seconds NOTE: There were 5 observations read from the data set LIBRARY.ITABI041. NOTE: The PROCEDURE PRINT printed page 163. NOTE: PROCEDURE PRINT used (Total process time): real time 0.02 seconds cpu time 0.01 seconds 4307 %loop(qtr=031x,ty=itabi); NOTE: The PROCEDURE CONTENTS printed page 164. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.16 seconds cpu time 0.01 seconds NOTE: The infile "/homes/data/ces/2003/interview/itabi031x.txt" is: File Name=/homes/data/ces/2003/interview/itabi031x.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=14220360 NOTE: 406296 records were read from the infile "/homes/data/ces/2003/interview/itabi031x.txt". The minimum record length was 34. The maximum record length was 34. NOTE: SAS went to a new line when INPUT statement reached past the end of a line. NOTE: The data set WORK.ITABI031X has 203148 observations and 8 variables. NOTE: DATA statement used (Total process time): real time 1.37 seconds cpu time 1.20 seconds 16 The SAS System 15:32 Tuesday, April 3, 2007 NOTE: There were 203148 observations read from the data set WORK.ITABI031X. NOTE: The data set LIBRARY.ITABI031X has 203148 observations and 8 variables. NOTE: PROCEDURE SORT used (Total process time): real time 3.69 seconds cpu time 0.89 seconds NOTE: There were 5 observations read from the data set LIBRARY.ITABI031X. NOTE: The PROCEDURE PRINT printed page 165. NOTE: PROCEDURE PRINT used (Total process time): real time 0.12 seconds cpu time 0.00 seconds NOTE: The PROCEDURE CONTENTS printed page 166. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.17 seconds cpu time 0.03 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 2:11.37 cpu time 1:09.53