1 The SAS System 12:44 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 4.73 seconds cpu time 0.24 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 Expenditure Data Files 7 * Report errors to jroth@nber.org 8 * This program is distributed under the GNU GPL. 9 * See end of this file and 10 * http://www.gnu.org/licenses/ for details. 11 **************************************************; 12 13 * The following line should contain the directory 14 where the SAS file is to be stored ; 15 16 libname library "./sas"; NOTE: Libref LIBRARY was successfully assigned as follows: Engine: V9 Physical Name: /disk/nber10/SCCS/ces/2003/interview/sas 17 18 * The following line should contain 19 the complete path and name of the raw data file. 20 On a PC, use backslashes in paths as in C:\ ; 2 The SAS System 12:44 Tuesday, April 3, 2007 21 22 **************************************************; 23 ** This macro is for reading one dataset ; 24 %macro loop(includeit=); 25 %let dataset=%substr(&includeit,2); 26 %let dataset=%substr(&dataset.,1,3); 27 %let dataset=&dataset.03; 28 %put dataset=&dataset.; 29 30 DATA &dataset ; 31 32 INFILE "/homes/data/ces/2003/interview/&dataset..txt" LRECL = 20000 ; 33 34 INPUT 35 %include "&includeit."; 36 ; 37 38 proc sort data=&dataset. out=library.&dataset.; 39 by newid; 40 41 proc print data=library.&dataset. (obs=5); 42 proc contents data=library.&dataset.; 43 %mend; 44 **************************************************; 45 ** Putting the names of all record layout files into a dataset ; 46 x '/usr/bin/rm expnfiles.lst' 46 ! ; 47 x 'ls i???.txt > expnfiles.lst' 47 ! ; 48 DATA filelist; 49 INFILE "expnfiles.lst" PAD MISSOVER; 50 INPUT expnfile $ ; 51 ; 52 **************************************************; 53 ** Putting the names of all files into a macro variable ; NOTE: The infile "expnfiles.lst" is: File Name=/disk/nber10/SCCS/ces/2003/interview/expnfiles.lst, Owner Name=jroth,Group Name=aging, Access Permission=rw-r--r--, File Size (bytes)=441 NOTE: 49 records were read from the infile "expnfiles.lst". The minimum record length was 8. The maximum record length was 8. NOTE: The data set WORK.FILELIST has 49 observations and 1 variables. NOTE: DATA statement used (Total process time): real time 0.82 seconds cpu time 0.02 seconds 54 proc sql; 55 select expnfile into: list separated by ' ' from filelist; 56 quit; NOTE: The PROCEDURE SQL printed page 1. NOTE: PROCEDURE SQL used (Total process time): real time 1.78 seconds cpu time 0.17 seconds 3 The SAS System 12:44 Tuesday, April 3, 2007 57 *%put &list.; 58 **************************************************; 59 ** This macro loop reads each file in the filelist ; 60 %macro fileloop; 61 %let i = 1; 62 %let this_file = %scan(&list,&i," "); 63 %do %while (%length(&this_file)>0); 64 %loop(includeit=&this_file.); 65 %let i = %eval(&i+1); 66 %let this_file = %scan(&list,&i," "); 67 %end; 68 %mend; 69 %fileloop; dataset=apa03 NOTE: The infile "/homes/data/ces/2003/interview/apa03.txt" is: File Name=/homes/data/ces/2003/interview/apa03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=343540 NOTE: 3860 records were read from the infile "/homes/data/ces/2003/interview/apa03.txt". The minimum record length was 88. The maximum record length was 88. NOTE: The data set WORK.APA03 has 3860 observations and 35 variables. NOTE: DATA statement used (Total process time): real time 0.20 seconds cpu time 0.03 seconds NOTE: There were 3860 observations read from the data set WORK.APA03. NOTE: The data set LIBRARY.APA03 has 3860 observations and 35 variables. NOTE: PROCEDURE SORT used (Total process time): real time 1.00 seconds cpu time 0.12 seconds NOTE: There were 5 observations read from the data set LIBRARY.APA03. NOTE: The PROCEDURE PRINT printed page 2. NOTE: PROCEDURE PRINT used (Total process time): real time 0.28 seconds cpu time 0.00 seconds dataset=apb03 NOTE: The PROCEDURE CONTENTS printed pages 3-4. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.31 seconds cpu time 0.06 seconds NOTE: The infile "/homes/data/ces/2003/interview/apb03.txt" is: File Name=/homes/data/ces/2003/interview/apb03.txt, Owner Name=jroth,Group Name=aging, 4 The SAS System 12:44 Tuesday, April 3, 2007 Access Permission=rw-rw-r--, File Size (bytes)=2951440 NOTE: 36893 records were read from the infile "/homes/data/ces/2003/interview/apb03.txt". The minimum record length was 79. The maximum record length was 79. NOTE: The data set WORK.APB03 has 36893 observations and 33 variables. NOTE: DATA statement used (Total process time): real time 1.17 seconds cpu time 0.53 seconds NOTE: There were 36893 observations read from the data set WORK.APB03. NOTE: The data set LIBRARY.APB03 has 36893 observations and 33 variables. NOTE: PROCEDURE SORT used (Total process time): real time 1.19 seconds cpu time 0.24 seconds NOTE: There were 5 observations read from the data set LIBRARY.APB03. NOTE: The PROCEDURE PRINT printed page 5. NOTE: PROCEDURE PRINT used (Total process time): real time 0.05 seconds cpu time 0.00 seconds dataset=apl03 NOTE: The PROCEDURE CONTENTS printed pages 6-7. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.12 seconds cpu time 0.02 seconds NOTE: The infile "/homes/data/ces/2003/interview/apl03.txt" is: File Name=/homes/data/ces/2003/interview/apl03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=14163864 NOTE: 363176 records were read from the infile "/homes/data/ces/2003/interview/apl03.txt". The minimum record length was 38. The maximum record length was 38. NOTE: The data set WORK.APL03 has 363176 observations and 21 variables. NOTE: DATA statement used (Total process time): real time 6.45 seconds cpu time 2.64 seconds NOTE: There were 363176 observations read from the data set WORK.APL03. NOTE: The data set LIBRARY.APL03 has 363176 observations and 21 variables. NOTE: PROCEDURE SORT used (Total process time): real time 6.95 seconds cpu time 1.90 seconds NOTE: There were 5 observations read from the data set LIBRARY.APL03. 5 The SAS System 12:44 Tuesday, April 3, 2007 NOTE: The PROCEDURE PRINT printed page 8. NOTE: PROCEDURE PRINT used (Total process time): real time 0.05 seconds cpu time 0.00 seconds dataset=cla03 NOTE: The PROCEDURE CONTENTS printed pages 9-10. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.10 seconds cpu time 0.04 seconds NOTE: The infile "/homes/data/ces/2003/interview/cla03.txt" is: File Name=/homes/data/ces/2003/interview/cla03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=15836800 NOTE: 197960 records were read from the infile "/homes/data/ces/2003/interview/cla03.txt". The minimum record length was 79. The maximum record length was 79. NOTE: The data set WORK.CLA03 has 197960 observations and 35 variables. NOTE: DATA statement used (Total process time): real time 5.46 seconds cpu time 2.40 seconds NOTE: There were 197960 observations read from the data set WORK.CLA03. NOTE: The data set LIBRARY.CLA03 has 197960 observations and 35 variables. NOTE: PROCEDURE SORT used (Total process time): real time 6.40 seconds cpu time 1.18 seconds NOTE: There were 5 observations read from the data set LIBRARY.CLA03. NOTE: The PROCEDURE PRINT printed page 11. NOTE: PROCEDURE PRINT used (Total process time): real time 0.07 seconds cpu time 0.01 seconds dataset=clb03 NOTE: The PROCEDURE CONTENTS printed pages 12-13. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.09 seconds cpu time 0.02 seconds NOTE: The infile "/homes/data/ces/2003/interview/clb03.txt" is: File Name=/homes/data/ces/2003/interview/clb03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=2085920 6 The SAS System 12:44 Tuesday, April 3, 2007 NOTE: 26074 records were read from the infile "/homes/data/ces/2003/interview/clb03.txt". The minimum record length was 79. The maximum record length was 79. NOTE: The data set WORK.CLB03 has 26074 observations and 35 variables. NOTE: DATA statement used (Total process time): real time 0.62 seconds cpu time 0.30 seconds NOTE: There were 26074 observations read from the data set WORK.CLB03. NOTE: The data set LIBRARY.CLB03 has 26074 observations and 35 variables. NOTE: PROCEDURE SORT used (Total process time): real time 1.23 seconds cpu time 0.22 seconds NOTE: There were 5 observations read from the data set LIBRARY.CLB03. NOTE: The PROCEDURE PRINT printed page 14. NOTE: PROCEDURE PRINT used (Total process time): real time 0.05 seconds cpu time 0.00 seconds dataset=clc03 NOTE: The PROCEDURE CONTENTS printed pages 15-16. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.09 seconds cpu time 0.01 seconds NOTE: The infile "/homes/data/ces/2003/interview/clc03.txt" is: File Name=/homes/data/ces/2003/interview/clc03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=297329 NOTE: 4073 records were read from the infile "/homes/data/ces/2003/interview/clc03.txt". The minimum record length was 72. The maximum record length was 72. NOTE: The data set WORK.CLC03 has 4073 observations and 31 variables. NOTE: DATA statement used (Total process time): real time 0.13 seconds cpu time 0.05 seconds NOTE: There were 4073 observations read from the data set WORK.CLC03. NOTE: The data set LIBRARY.CLC03 has 4073 observations and 31 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.24 seconds cpu time 0.08 seconds NOTE: There were 5 observations read from the data set LIBRARY.CLC03. NOTE: The PROCEDURE PRINT printed page 17. NOTE: PROCEDURE PRINT used (Total process time): 7 The SAS System 12:44 Tuesday, April 3, 2007 real time 0.07 seconds cpu time 0.01 seconds dataset=cld03 NOTE: The PROCEDURE CONTENTS printed pages 18-19. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.24 seconds cpu time 0.01 seconds NOTE: The infile "/homes/data/ces/2003/interview/cld03.txt" is: File Name=/homes/data/ces/2003/interview/cld03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=244696 NOTE: 3352 records were read from the infile "/homes/data/ces/2003/interview/cld03.txt". The minimum record length was 72. The maximum record length was 72. NOTE: The data set WORK.CLD03 has 3352 observations and 31 variables. NOTE: DATA statement used (Total process time): real time 0.11 seconds cpu time 0.05 seconds NOTE: There were 3352 observations read from the data set WORK.CLD03. NOTE: The data set LIBRARY.CLD03 has 3352 observations and 31 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.23 seconds cpu time 0.08 seconds NOTE: There were 5 observations read from the data set LIBRARY.CLD03. NOTE: The PROCEDURE PRINT printed page 20. NOTE: PROCEDURE PRINT used (Total process time): real time 0.05 seconds cpu time 0.00 seconds dataset=cnt03 NOTE: The PROCEDURE CONTENTS printed pages 21-22. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.09 seconds cpu time 0.02 seconds NOTE: The infile "/homes/data/ces/2003/interview/cnt03.txt" is: File Name=/homes/data/ces/2003/interview/cnt03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=1509304 NOTE: 40792 records were read from the infile "/homes/data/ces/2003/interview/cnt03.txt". 8 The SAS System 12:44 Tuesday, April 3, 2007 The minimum record length was 36. The maximum record length was 36. NOTE: The data set WORK.CNT03 has 40792 observations and 11 variables. NOTE: DATA statement used (Total process time): real time 0.60 seconds cpu time 0.27 seconds NOTE: There were 40792 observations read from the data set WORK.CNT03. NOTE: The data set LIBRARY.CNT03 has 40792 observations and 11 variables. NOTE: PROCEDURE SORT used (Total process time): real time 1.06 seconds cpu time 0.20 seconds NOTE: There were 5 observations read from the data set LIBRARY.CNT03. NOTE: The PROCEDURE PRINT printed page 23. NOTE: PROCEDURE PRINT used (Total process time): real time 0.41 seconds cpu time 0.00 seconds dataset=cra03 NOTE: The PROCEDURE CONTENTS printed page 24. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.08 seconds cpu time 0.01 seconds NOTE: The infile "/homes/data/ces/2003/interview/cra03.txt" is: File Name=/homes/data/ces/2003/interview/cra03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=83550 NOTE: 1114 records were read from the infile "/homes/data/ces/2003/interview/cra03.txt". The minimum record length was 74. The maximum record length was 74. NOTE: The data set WORK.CRA03 has 1114 observations and 29 variables. NOTE: DATA statement used (Total process time): real time 0.06 seconds cpu time 0.03 seconds NOTE: There were 1114 observations read from the data set WORK.CRA03. NOTE: The data set LIBRARY.CRA03 has 1114 observations and 29 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.17 seconds cpu time 0.06 seconds NOTE: There were 5 observations read from the data set LIBRARY.CRA03. NOTE: The PROCEDURE PRINT printed page 25. NOTE: PROCEDURE PRINT used (Total process time): real time 0.05 seconds cpu time 0.00 seconds 9 The SAS System 12:44 Tuesday, April 3, 2007 dataset=crb03 NOTE: The PROCEDURE CONTENTS printed pages 26-27. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.09 seconds cpu time 0.02 seconds NOTE: The infile "/homes/data/ces/2003/interview/crb03.txt" is: File Name=/homes/data/ces/2003/interview/crb03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=4009716 NOTE: 14634 records were read from the infile "/homes/data/ces/2003/interview/crb03.txt". The minimum record length was 273. The maximum record length was 273. NOTE: The data set WORK.CRB03 has 14634 observations and 85 variables. NOTE: DATA statement used (Total process time): real time 1.50 seconds cpu time 0.47 seconds NOTE: There were 14634 observations read from the data set WORK.CRB03. NOTE: The data set LIBRARY.CRB03 has 14634 observations and 85 variables. NOTE: PROCEDURE SORT used (Total process time): real time 1.45 seconds cpu time 0.21 seconds NOTE: There were 5 observations read from the data set LIBRARY.CRB03. NOTE: The PROCEDURE PRINT printed page 28. NOTE: PROCEDURE PRINT used (Total process time): real time 0.05 seconds cpu time 0.00 seconds dataset=eda03 NOTE: The PROCEDURE CONTENTS printed pages 29-31. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.10 seconds cpu time 0.03 seconds NOTE: The infile "/homes/data/ces/2003/interview/eda03.txt" is: File Name=/homes/data/ces/2003/interview/eda03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=2713182 NOTE: 31186 records were read from the infile "/homes/data/ces/2003/interview/eda03.txt". The minimum record length was 86. The maximum record length was 86. 10 The SAS System 12:44 Tuesday, April 3, 2007 NOTE: The data set WORK.EDA03 has 31186 observations and 35 variables. NOTE: DATA statement used (Total process time): real time 0.77 seconds cpu time 0.40 seconds NOTE: There were 31186 observations read from the data set WORK.EDA03. NOTE: The data set LIBRARY.EDA03 has 31186 observations and 35 variables. NOTE: PROCEDURE SORT used (Total process time): real time 1.16 seconds cpu time 0.25 seconds NOTE: There were 5 observations read from the data set LIBRARY.EDA03. NOTE: The PROCEDURE PRINT printed page 32. NOTE: PROCEDURE PRINT used (Total process time): real time 0.05 seconds cpu time 0.00 seconds dataset=ent03 NOTE: The PROCEDURE CONTENTS printed pages 33-34. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.09 seconds cpu time 0.01 seconds NOTE: The infile "/homes/data/ces/2003/interview/ent03.txt" is: File Name=/homes/data/ces/2003/interview/ent03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=3192240 NOTE: 26602 records were read from the infile "/homes/data/ces/2003/interview/ent03.txt". The minimum record length was 119. The maximum record length was 119. NOTE: The data set WORK.ENT03 has 26602 observations and 27 variables. NOTE: DATA statement used (Total process time): real time 0.89 seconds cpu time 0.29 seconds NOTE: There were 26602 observations read from the data set WORK.ENT03. NOTE: The data set LIBRARY.ENT03 has 26602 observations and 27 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.98 seconds cpu time 0.26 seconds NOTE: There were 5 observations read from the data set LIBRARY.ENT03. NOTE: The PROCEDURE PRINT printed page 35. NOTE: PROCEDURE PRINT used (Total process time): real time 0.07 seconds cpu time 0.01 seconds 11 The SAS System 12:44 Tuesday, April 3, 2007 dataset=eqb03 NOTE: The PROCEDURE CONTENTS printed pages 36-37. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.10 seconds cpu time 0.02 seconds NOTE: The infile "/homes/data/ces/2003/interview/eqb03.txt" is: File Name=/homes/data/ces/2003/interview/eqb03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=356605 NOTE: 4885 records were read from the infile "/homes/data/ces/2003/interview/eqb03.txt". The minimum record length was 72. The maximum record length was 72. NOTE: The data set WORK.EQB03 has 4885 observations and 31 variables. NOTE: DATA statement used (Total process time): real time 0.15 seconds cpu time 0.07 seconds NOTE: There were 4885 observations read from the data set WORK.EQB03. NOTE: The data set LIBRARY.EQB03 has 4885 observations and 31 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.52 seconds cpu time 0.09 seconds NOTE: There were 5 observations read from the data set LIBRARY.EQB03. NOTE: The PROCEDURE PRINT printed page 38. NOTE: PROCEDURE PRINT used (Total process time): real time 0.05 seconds cpu time 0.00 seconds dataset=fn203 NOTE: The PROCEDURE CONTENTS printed pages 39-40. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.08 seconds cpu time 0.02 seconds NOTE: The infile "/homes/data/ces/2003/interview/fn203.txt" is: File Name=/homes/data/ces/2003/interview/fn203.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=1055598 NOTE: 31047 records were read from the infile "/homes/data/ces/2003/interview/fn203.txt". The minimum record length was 33. The maximum record length was 33. NOTE: The data set WORK.FN203 has 31047 observations and 9 variables. NOTE: DATA statement used (Total process time): 12 The SAS System 12:44 Tuesday, April 3, 2007 real time 0.36 seconds cpu time 0.15 seconds NOTE: There were 31047 observations read from the data set WORK.FN203. NOTE: The data set LIBRARY.FN203 has 31047 observations and 9 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.50 seconds cpu time 0.16 seconds NOTE: There were 5 observations read from the data set LIBRARY.FN203. NOTE: The PROCEDURE PRINT printed page 41. NOTE: PROCEDURE PRINT used (Total process time): real time 0.24 seconds cpu time 0.00 seconds dataset=fna03 NOTE: The PROCEDURE CONTENTS printed page 42. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.35 seconds cpu time 0.01 seconds NOTE: The infile "/homes/data/ces/2003/interview/fna03.txt" is: File Name=/homes/data/ces/2003/interview/fna03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=381152 NOTE: 8864 records were read from the infile "/homes/data/ces/2003/interview/fna03.txt". The minimum record length was 42. The maximum record length was 42. NOTE: The data set WORK.FNA03 has 8864 observations and 11 variables. NOTE: DATA statement used (Total process time): real time 0.17 seconds cpu time 0.07 seconds NOTE: There were 8864 observations read from the data set WORK.FNA03. NOTE: The data set LIBRARY.FNA03 has 8864 observations and 11 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.35 seconds cpu time 0.09 seconds NOTE: There were 5 observations read from the data set LIBRARY.FNA03. NOTE: The PROCEDURE PRINT printed page 43. NOTE: PROCEDURE PRINT used (Total process time): real time 0.05 seconds cpu time 0.00 seconds dataset=fnb03 13 The SAS System 12:44 Tuesday, April 3, 2007 NOTE: The PROCEDURE CONTENTS printed page 44. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.08 seconds cpu time 0.03 seconds NOTE: The infile "/homes/data/ces/2003/interview/fnb03.txt" is: File Name=/homes/data/ces/2003/interview/fnb03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=1069530 NOTE: 10186 records were read from the infile "/homes/data/ces/2003/interview/fnb03.txt". The minimum record length was 104. The maximum record length was 104. NOTE: The data set WORK.FNB03 has 10186 observations and 29 variables. NOTE: DATA statement used (Total process time): real time 0.35 seconds cpu time 0.08 seconds NOTE: There were 10186 observations read from the data set WORK.FNB03. NOTE: The data set LIBRARY.FNB03 has 10186 observations and 29 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.58 seconds cpu time 0.13 seconds NOTE: There were 5 observations read from the data set LIBRARY.FNB03. NOTE: The PROCEDURE PRINT printed page 45. NOTE: PROCEDURE PRINT used (Total process time): real time 0.04 seconds cpu time 0.01 seconds dataset=fra03 NOTE: The PROCEDURE CONTENTS printed pages 46-47. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.08 seconds cpu time 0.02 seconds NOTE: The infile "/homes/data/ces/2003/interview/fra03.txt" is: File Name=/homes/data/ces/2003/interview/fra03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=3053517 NOTE: 41829 records were read from the infile "/homes/data/ces/2003/interview/fra03.txt". The minimum record length was 72. The maximum record length was 72. NOTE: The data set WORK.FRA03 has 41829 observations and 31 variables. NOTE: DATA statement used (Total process time): real time 0.96 seconds cpu time 0.53 seconds 14 The SAS System 12:44 Tuesday, April 3, 2007 NOTE: There were 41829 observations read from the data set WORK.FRA03. NOTE: The data set LIBRARY.FRA03 has 41829 observations and 31 variables. NOTE: PROCEDURE SORT used (Total process time): real time 1.17 seconds cpu time 0.24 seconds NOTE: There were 5 observations read from the data set LIBRARY.FRA03. NOTE: The PROCEDURE PRINT printed page 48. NOTE: PROCEDURE PRINT used (Total process time): real time 0.05 seconds cpu time 0.01 seconds dataset=frb03 NOTE: The PROCEDURE CONTENTS printed pages 49-50. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.09 seconds cpu time 0.03 seconds NOTE: The infile "/homes/data/ces/2003/interview/frb03.txt" is: File Name=/homes/data/ces/2003/interview/frb03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=7308 NOTE: 174 records were read from the infile "/homes/data/ces/2003/interview/frb03.txt". The minimum record length was 41. The maximum record length was 41. NOTE: The data set WORK.FRB03 has 174 observations and 9 variables. NOTE: DATA statement used (Total process time): real time 0.03 seconds cpu time 0.01 seconds NOTE: There were 174 observations read from the data set WORK.FRB03. NOTE: The data set LIBRARY.FRB03 has 174 observations and 9 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.54 seconds cpu time 0.06 seconds NOTE: There were 5 observations read from the data set LIBRARY.FRB03. NOTE: The PROCEDURE PRINT printed page 51. NOTE: PROCEDURE PRINT used (Total process time): real time 0.06 seconds cpu time 0.00 seconds dataset=hel03 NOTE: The PROCEDURE CONTENTS printed page 52. NOTE: PROCEDURE CONTENTS used (Total process time): 15 The SAS System 12:44 Tuesday, April 3, 2007 real time 0.08 seconds cpu time 0.02 seconds NOTE: The infile "/homes/data/ces/2003/interview/hel03.txt" is: File Name=/homes/data/ces/2003/interview/hel03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=285480 NOTE: 1464 records were read from the infile "/homes/data/ces/2003/interview/hel03.txt". The minimum record length was 194. The maximum record length was 194. NOTE: The data set WORK.HEL03 has 1464 observations and 67 variables. NOTE: DATA statement used (Total process time): real time 0.12 seconds cpu time 0.05 seconds NOTE: There were 1464 observations read from the data set WORK.HEL03. NOTE: The data set LIBRARY.HEL03 has 1464 observations and 67 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.23 seconds cpu time 0.08 seconds NOTE: There were 5 observations read from the data set LIBRARY.HEL03. NOTE: The PROCEDURE PRINT printed page 53. NOTE: PROCEDURE PRINT used (Total process time): real time 0.05 seconds cpu time 0.00 seconds dataset=ihb03 NOTE: The PROCEDURE CONTENTS printed pages 54-55. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.09 seconds cpu time 0.01 seconds NOTE: The infile "/homes/data/ces/2003/interview/ihb03.txt" is: File Name=/homes/data/ces/2003/interview/ihb03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=2485168 NOTE: 44378 records were read from the infile "/homes/data/ces/2003/interview/ihb03.txt". The minimum record length was 55. The maximum record length was 55. NOTE: The data set WORK.IHB03 has 44378 observations and 31 variables. NOTE: DATA statement used (Total process time): real time 0.72 seconds cpu time 0.44 seconds 16 The SAS System 12:44 Tuesday, April 3, 2007 NOTE: There were 44378 observations read from the data set WORK.IHB03. NOTE: The data set LIBRARY.IHB03 has 44378 observations and 31 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.94 seconds cpu time 0.27 seconds NOTE: There were 5 observations read from the data set LIBRARY.IHB03. NOTE: The PROCEDURE PRINT printed page 56. NOTE: PROCEDURE PRINT used (Total process time): real time 0.04 seconds cpu time 0.00 seconds dataset=ihc03 NOTE: The PROCEDURE CONTENTS printed pages 57-58. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.08 seconds cpu time 0.01 seconds NOTE: The infile "/homes/data/ces/2003/interview/ihc03.txt" is: File Name=/homes/data/ces/2003/interview/ihc03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=2109258 NOTE: 13786 records were read from the infile "/homes/data/ces/2003/interview/ihc03.txt". The minimum record length was 152. The maximum record length was 152. NOTE: The data set WORK.IHC03 has 13786 observations and 21 variables. NOTE: DATA statement used (Total process time): real time 0.91 seconds cpu time 0.14 seconds NOTE: There were 13786 observations read from the data set WORK.IHC03. NOTE: The data set LIBRARY.IHC03 has 13786 observations and 21 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.41 seconds cpu time 0.10 seconds NOTE: There were 5 observations read from the data set LIBRARY.IHC03. NOTE: The PROCEDURE PRINT printed page 59. NOTE: PROCEDURE PRINT used (Total process time): real time 0.04 seconds cpu time 0.01 seconds dataset=inb03 NOTE: The PROCEDURE CONTENTS printed pages 60-61. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.08 seconds cpu time 0.02 seconds 17 The SAS System 12:44 Tuesday, April 3, 2007 NOTE: The infile "/homes/data/ces/2003/interview/inb03.txt" is: File Name=/homes/data/ces/2003/interview/inb03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=13437788 NOTE: 115843 records were read from the infile "/homes/data/ces/2003/interview/inb03.txt". The minimum record length was 115. The maximum record length was 115. NOTE: The data set WORK.INB03 has 115843 observations and 47 variables. NOTE: DATA statement used (Total process time): real time 3.94 seconds cpu time 1.85 seconds NOTE: There were 115843 observations read from the data set WORK.INB03. NOTE: The data set LIBRARY.INB03 has 115843 observations and 47 variables. NOTE: PROCEDURE SORT used (Total process time): real time 4.15 seconds cpu time 0.76 seconds NOTE: There were 5 observations read from the data set LIBRARY.INB03. NOTE: The PROCEDURE PRINT printed page 62. NOTE: PROCEDURE PRINT used (Total process time): real time 0.05 seconds cpu time 0.01 seconds dataset=lsd03 NOTE: The PROCEDURE CONTENTS printed pages 63-64. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.09 seconds cpu time 0.02 seconds NOTE: The infile "/homes/data/ces/2003/interview/lsd03.txt" is: File Name=/homes/data/ces/2003/interview/lsd03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=436084 NOTE: 2057 records were read from the infile "/homes/data/ces/2003/interview/lsd03.txt". The minimum record length was 211. The maximum record length was 211. NOTE: The data set WORK.LSD03 has 2057 observations and 81 variables. NOTE: DATA statement used (Total process time): real time 0.20 seconds cpu time 0.05 seconds NOTE: There were 2057 observations read from the data set WORK.LSD03. NOTE: The data set LIBRARY.LSD03 has 2057 observations and 81 variables. 18 The SAS System 12:44 Tuesday, April 3, 2007 NOTE: PROCEDURE SORT used (Total process time): real time 0.36 seconds cpu time 0.08 seconds NOTE: There were 5 observations read from the data set LIBRARY.LSD03. NOTE: The PROCEDURE PRINT printed page 65. NOTE: PROCEDURE PRINT used (Total process time): real time 0.32 seconds cpu time 0.01 seconds dataset=mdb03 NOTE: The PROCEDURE CONTENTS printed pages 66-68. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.12 seconds cpu time 0.02 seconds NOTE: The infile "/homes/data/ces/2003/interview/mdb03.txt" is: File Name=/homes/data/ces/2003/interview/mdb03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=7208325 NOTE: 96111 records were read from the infile "/homes/data/ces/2003/interview/mdb03.txt". The minimum record length was 74. The maximum record length was 74. NOTE: The data set WORK.MDB03 has 96111 observations and 31 variables. NOTE: DATA statement used (Total process time): real time 2.04 seconds cpu time 0.98 seconds NOTE: There were 96111 observations read from the data set WORK.MDB03. NOTE: The data set LIBRARY.MDB03 has 96111 observations and 31 variables. NOTE: PROCEDURE SORT used (Total process time): real time 2.15 seconds cpu time 0.46 seconds NOTE: There were 5 observations read from the data set LIBRARY.MDB03. NOTE: The PROCEDURE PRINT printed page 69. NOTE: PROCEDURE PRINT used (Total process time): real time 0.05 seconds cpu time 0.01 seconds dataset=mdc03 NOTE: The PROCEDURE CONTENTS printed pages 70-71. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.08 seconds cpu time 0.02 seconds 19 The SAS System 12:44 Tuesday, April 3, 2007 NOTE: The infile "/homes/data/ces/2003/interview/mdc03.txt" is: File Name=/homes/data/ces/2003/interview/mdc03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=111150 NOTE: 1482 records were read from the infile "/homes/data/ces/2003/interview/mdc03.txt". The minimum record length was 74. The maximum record length was 74. NOTE: The data set WORK.MDC03 has 1482 observations and 31 variables. NOTE: DATA statement used (Total process time): real time 0.12 seconds cpu time 0.04 seconds NOTE: There were 1482 observations read from the data set WORK.MDC03. NOTE: The data set LIBRARY.MDC03 has 1482 observations and 31 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.73 seconds cpu time 0.05 seconds NOTE: There were 5 observations read from the data set LIBRARY.MDC03. NOTE: The PROCEDURE PRINT printed page 72. NOTE: PROCEDURE PRINT used (Total process time): real time 0.05 seconds cpu time 0.00 seconds dataset=mis03 NOTE: The PROCEDURE CONTENTS printed pages 73-74. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.08 seconds cpu time 0.01 seconds NOTE: The infile "/homes/data/ces/2003/interview/mis03.txt" is: File Name=/homes/data/ces/2003/interview/mis03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=5014078 NOTE: 68686 records were read from the infile "/homes/data/ces/2003/interview/mis03.txt". The minimum record length was 72. The maximum record length was 72. NOTE: The data set WORK.MIS03 has 68686 observations and 31 variables. NOTE: DATA statement used (Total process time): real time 1.78 seconds cpu time 0.74 seconds NOTE: There were 68686 observations read from the data set WORK.MIS03. NOTE: The data set LIBRARY.MIS03 has 68686 observations and 31 variables. NOTE: PROCEDURE SORT used (Total process time): real time 1.60 seconds 20 The SAS System 12:44 Tuesday, April 3, 2007 cpu time 0.36 seconds NOTE: There were 5 observations read from the data set LIBRARY.MIS03. NOTE: The PROCEDURE PRINT printed page 75. NOTE: PROCEDURE PRINT used (Total process time): real time 0.04 seconds cpu time 0.00 seconds dataset=mor03 NOTE: The PROCEDURE CONTENTS printed pages 76-77. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.09 seconds cpu time 0.02 seconds NOTE: The infile "/homes/data/ces/2003/interview/mor03.txt" is: File Name=/homes/data/ces/2003/interview/mor03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=3681990 NOTE: 18882 records were read from the infile "/homes/data/ces/2003/interview/mor03.txt". The minimum record length was 194. The maximum record length was 194. NOTE: The data set WORK.MOR03 has 18882 observations and 67 variables. NOTE: DATA statement used (Total process time): real time 1.11 seconds cpu time 0.45 seconds NOTE: There were 18882 observations read from the data set WORK.MOR03. NOTE: The data set LIBRARY.MOR03 has 18882 observations and 67 variables. NOTE: PROCEDURE SORT used (Total process time): real time 1.13 seconds cpu time 0.31 seconds NOTE: There were 5 observations read from the data set LIBRARY.MOR03. NOTE: The PROCEDURE PRINT printed page 78. NOTE: PROCEDURE PRINT used (Total process time): real time 0.05 seconds cpu time 0.00 seconds dataset=opb03 NOTE: The PROCEDURE CONTENTS printed pages 79-80. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.09 seconds cpu time 0.02 seconds NOTE: The infile "/homes/data/ces/2003/interview/opb03.txt" is: 21 The SAS System 12:44 Tuesday, April 3, 2007 File Name=/homes/data/ces/2003/interview/opb03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=2993184 NOTE: 31179 records were read from the infile "/homes/data/ces/2003/interview/opb03.txt". The minimum record length was 95. The maximum record length was 95. NOTE: The data set WORK.OPB03 has 31179 observations and 33 variables. NOTE: DATA statement used (Total process time): real time 0.85 seconds cpu time 0.39 seconds NOTE: There were 31179 observations read from the data set WORK.OPB03. NOTE: The data set LIBRARY.OPB03 has 31179 observations and 33 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.92 seconds cpu time 0.21 seconds NOTE: There were 5 observations read from the data set LIBRARY.OPB03. NOTE: The PROCEDURE PRINT printed page 81. NOTE: PROCEDURE PRINT used (Total process time): real time 0.05 seconds cpu time 0.01 seconds dataset=opd03 NOTE: The PROCEDURE CONTENTS printed pages 82-83. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.16 seconds cpu time 0.03 seconds NOTE: The infile "/homes/data/ces/2003/interview/opd03.txt" is: File Name=/homes/data/ces/2003/interview/opd03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=13130 NOTE: 202 records were read from the infile "/homes/data/ces/2003/interview/opd03.txt". The minimum record length was 64. The maximum record length was 64. NOTE: The data set WORK.OPD03 has 202 observations and 19 variables. NOTE: DATA statement used (Total process time): real time 0.23 seconds cpu time 0.01 seconds NOTE: There were 202 observations read from the data set WORK.OPD03. NOTE: The data set LIBRARY.OPD03 has 202 observations and 19 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.25 seconds cpu time 0.06 seconds 22 The SAS System 12:44 Tuesday, April 3, 2007 NOTE: There were 5 observations read from the data set LIBRARY.OPD03. NOTE: The PROCEDURE PRINT printed page 84. NOTE: PROCEDURE PRINT used (Total process time): real time 0.08 seconds cpu time 0.02 seconds dataset=oph03 NOTE: The PROCEDURE CONTENTS printed pages 85-86. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.07 seconds cpu time 0.02 seconds NOTE: The infile "/homes/data/ces/2003/interview/oph03.txt" is: File Name=/homes/data/ces/2003/interview/oph03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=158254 NOTE: 2362 records were read from the infile "/homes/data/ces/2003/interview/oph03.txt". The minimum record length was 66. The maximum record length was 66. NOTE: The data set WORK.OPH03 has 2362 observations and 21 variables. NOTE: DATA statement used (Total process time): real time 0.09 seconds cpu time 0.03 seconds NOTE: There were 2362 observations read from the data set WORK.OPH03. NOTE: The data set LIBRARY.OPH03 has 2362 observations and 21 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.21 seconds cpu time 0.06 seconds NOTE: There were 5 observations read from the data set LIBRARY.OPH03. NOTE: The PROCEDURE PRINT printed page 87. NOTE: PROCEDURE PRINT used (Total process time): real time 0.05 seconds cpu time 0.01 seconds dataset=opi03 NOTE: The PROCEDURE CONTENTS printed pages 88-89. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.09 seconds cpu time 0.03 seconds NOTE: The infile "/homes/data/ces/2003/interview/opi03.txt" is: File Name=/homes/data/ces/2003/interview/opi03.txt, Owner Name=jroth,Group Name=aging, 23 The SAS System 12:44 Tuesday, April 3, 2007 Access Permission=rw-rw-r--, File Size (bytes)=11528616 NOTE: 43669 records were read from the infile "/homes/data/ces/2003/interview/opi03.txt". The minimum record length was 263. The maximum record length was 263. NOTE: The data set WORK.OPI03 has 43669 observations and 129 variables. NOTE: DATA statement used (Total process time): real time 3.46 seconds cpu time 1.75 seconds NOTE: There were 43669 observations read from the data set WORK.OPI03. NOTE: The data set LIBRARY.OPI03 has 43669 observations and 129 variables. NOTE: PROCEDURE SORT used (Total process time): real time 3.22 seconds cpu time 0.51 seconds NOTE: There were 5 observations read from the data set LIBRARY.OPI03. NOTE: The PROCEDURE PRINT printed page 90. NOTE: PROCEDURE PRINT used (Total process time): real time 0.08 seconds cpu time 0.00 seconds dataset=ovb03 NOTE: The PROCEDURE CONTENTS printed pages 91-94. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.10 seconds cpu time 0.02 seconds NOTE: The infile "/homes/data/ces/2003/interview/ovb03.txt" is: File Name=/homes/data/ces/2003/interview/ovb03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=24032618 NOTE: 76537 records were read from the infile "/homes/data/ces/2003/interview/ovb03.txt". The minimum record length was 313. The maximum record length was 313. NOTE: The data set WORK.OVB03 has 76537 observations and 122 variables. NOTE: DATA statement used (Total process time): real time 7.03 seconds cpu time 3.08 seconds NOTE: There were 76537 observations read from the data set WORK.OVB03. NOTE: The data set LIBRARY.OVB03 has 76537 observations and 122 variables. NOTE: PROCEDURE SORT used (Total process time): real time 9.03 seconds cpu time 1.09 seconds NOTE: There were 5 observations read from the data set LIBRARY.OVB03. 24 The SAS System 12:44 Tuesday, April 3, 2007 NOTE: The PROCEDURE PRINT printed page 95. NOTE: PROCEDURE PRINT used (Total process time): real time 0.10 seconds cpu time 0.04 seconds dataset=ovc03 NOTE: The PROCEDURE CONTENTS printed pages 96-99. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.12 seconds cpu time 0.02 seconds NOTE: The infile "/homes/data/ces/2003/interview/ovc03.txt" is: File Name=/homes/data/ces/2003/interview/ovc03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=188874 NOTE: 2998 records were read from the infile "/homes/data/ces/2003/interview/ovc03.txt". The minimum record length was 62. The maximum record length was 62. NOTE: The data set WORK.OVC03 has 2998 observations and 23 variables. NOTE: DATA statement used (Total process time): real time 0.16 seconds cpu time 0.04 seconds NOTE: There were 2998 observations read from the data set WORK.OVC03. NOTE: The data set LIBRARY.OVC03 has 2998 observations and 23 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.23 seconds cpu time 0.08 seconds NOTE: There were 5 observations read from the data set LIBRARY.OVC03. NOTE: The PROCEDURE PRINT printed page 100. NOTE: PROCEDURE PRINT used (Total process time): real time 0.05 seconds cpu time 0.03 seconds dataset=rnt03 NOTE: The PROCEDURE CONTENTS printed pages 101-102. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.20 seconds cpu time 0.03 seconds NOTE: The infile "/homes/data/ces/2003/interview/rnt03.txt" is: File Name=/homes/data/ces/2003/interview/rnt03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=1323065 25 The SAS System 12:44 Tuesday, April 3, 2007 NOTE: 13927 records were read from the infile "/homes/data/ces/2003/interview/rnt03.txt". The minimum record length was 94. The maximum record length was 94. NOTE: The data set WORK.RNT03 has 13927 observations and 37 variables. NOTE: DATA statement used (Total process time): real time 0.48 seconds cpu time 0.19 seconds NOTE: There were 13927 observations read from the data set WORK.RNT03. NOTE: The data set LIBRARY.RNT03 has 13927 observations and 37 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.50 seconds cpu time 0.13 seconds NOTE: There were 5 observations read from the data set LIBRARY.RNT03. NOTE: The PROCEDURE PRINT printed page 103. NOTE: PROCEDURE PRINT used (Total process time): real time 0.06 seconds cpu time 0.01 seconds dataset=rtv03 NOTE: The PROCEDURE CONTENTS printed pages 104-105. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.15 seconds cpu time 0.02 seconds NOTE: The infile "/homes/data/ces/2003/interview/rtv03.txt" is: File Name=/homes/data/ces/2003/interview/rtv03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=55174 NOTE: 1126 records were read from the infile "/homes/data/ces/2003/interview/rtv03.txt". The minimum record length was 48. The maximum record length was 48. NOTE: The data set WORK.RTV03 has 1126 observations and 13 variables. NOTE: DATA statement used (Total process time): real time 0.07 seconds cpu time 0.04 seconds NOTE: There were 1126 observations read from the data set WORK.RTV03. NOTE: The data set LIBRARY.RTV03 has 1126 observations and 13 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.20 seconds cpu time 0.05 seconds NOTE: There were 5 observations read from the data set LIBRARY.RTV03. NOTE: The PROCEDURE PRINT printed page 106. NOTE: PROCEDURE PRINT used (Total process time): 26 The SAS System 12:44 Tuesday, April 3, 2007 real time 0.05 seconds cpu time 0.00 seconds dataset=sub03 NOTE: The PROCEDURE CONTENTS printed page 107. 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/sub03.txt" is: File Name=/homes/data/ces/2003/interview/sub03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=998568 NOTE: 27738 records were read from the infile "/homes/data/ces/2003/interview/sub03.txt". The minimum record length was 35. The maximum record length was 35. NOTE: The data set WORK.SUB03 has 27738 observations and 11 variables. NOTE: DATA statement used (Total process time): real time 0.60 seconds cpu time 0.17 seconds NOTE: There were 27738 observations read from the data set WORK.SUB03. NOTE: The data set LIBRARY.SUB03 has 27738 observations and 11 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.57 seconds cpu time 0.15 seconds NOTE: There were 5 observations read from the data set LIBRARY.SUB03. NOTE: The PROCEDURE PRINT printed page 108. NOTE: PROCEDURE PRINT used (Total process time): real time 0.14 seconds cpu time 0.00 seconds dataset=trd03 NOTE: The PROCEDURE CONTENTS printed page 109. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.30 seconds cpu time 0.00 seconds NOTE: The infile "/homes/data/ces/2003/interview/trd03.txt" is: File Name=/homes/data/ces/2003/interview/trd03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=253450 NOTE: 6850 records were read from the infile "/homes/data/ces/2003/interview/trd03.txt". 27 The SAS System 12:44 Tuesday, April 3, 2007 The minimum record length was 36. The maximum record length was 36. NOTE: The data set WORK.TRD03 has 6850 observations and 11 variables. NOTE: DATA statement used (Total process time): real time 0.13 seconds cpu time 0.05 seconds NOTE: There were 6850 observations read from the data set WORK.TRD03. NOTE: The data set LIBRARY.TRD03 has 6850 observations and 11 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.56 seconds cpu time 0.07 seconds NOTE: There were 5 observations read from the data set LIBRARY.TRD03. NOTE: The PROCEDURE PRINT printed page 110. NOTE: PROCEDURE PRINT used (Total process time): real time 0.12 seconds cpu time 0.01 seconds dataset=tre03 NOTE: The PROCEDURE CONTENTS printed page 111. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.16 seconds cpu time 0.02 seconds NOTE: The infile "/homes/data/ces/2003/interview/tre03.txt" is: File Name=/homes/data/ces/2003/interview/tre03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=128427 NOTE: 3471 records were read from the infile "/homes/data/ces/2003/interview/tre03.txt". The minimum record length was 36. The maximum record length was 36. NOTE: The data set WORK.TRE03 has 3471 observations and 11 variables. NOTE: DATA statement used (Total process time): real time 0.09 seconds cpu time 0.03 seconds NOTE: There were 3471 observations read from the data set WORK.TRE03. NOTE: The data set LIBRARY.TRE03 has 3471 observations and 11 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.20 seconds cpu time 0.08 seconds NOTE: There were 5 observations read from the data set LIBRARY.TRE03. NOTE: The PROCEDURE PRINT printed page 112. NOTE: PROCEDURE PRINT used (Total process time): real time 0.05 seconds cpu time 0.03 seconds 28 The SAS System 12:44 Tuesday, April 3, 2007 dataset=trf03 NOTE: The PROCEDURE CONTENTS printed page 113. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.16 seconds cpu time 0.00 seconds NOTE: The infile "/homes/data/ces/2003/interview/trf03.txt" is: File Name=/homes/data/ces/2003/interview/trf03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=26402 NOTE: 307 records were read from the infile "/homes/data/ces/2003/interview/trf03.txt". The minimum record length was 85. The maximum record length was 85. NOTE: The data set WORK.TRF03 has 307 observations and 27 variables. NOTE: DATA statement used (Total process time): real time 0.05 seconds cpu time 0.01 seconds NOTE: There were 307 observations read from the data set WORK.TRF03. NOTE: The data set LIBRARY.TRF03 has 307 observations and 27 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.17 seconds cpu time 0.04 seconds NOTE: There were 5 observations read from the data set LIBRARY.TRF03. NOTE: The PROCEDURE PRINT printed page 114. NOTE: PROCEDURE PRINT used (Total process time): real time 0.19 seconds cpu time 0.00 seconds dataset=trv03 NOTE: The PROCEDURE CONTENTS printed pages 115-116. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.30 seconds cpu time 0.02 seconds NOTE: The infile "/homes/data/ces/2003/interview/trv03.txt" is: File Name=/homes/data/ces/2003/interview/trv03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=5893716 NOTE: 18651 records were read from the infile "/homes/data/ces/2003/interview/trv03.txt". The minimum record length was 315. The maximum record length was 315. 29 The SAS System 12:44 Tuesday, April 3, 2007 NOTE: The data set WORK.TRV03 has 18651 observations and 117 variables. NOTE: DATA statement used (Total process time): real time 2.19 seconds cpu time 0.71 seconds NOTE: There were 18651 observations read from the data set WORK.TRV03. NOTE: The data set LIBRARY.TRV03 has 18651 observations and 117 variables. NOTE: PROCEDURE SORT used (Total process time): real time 1.86 seconds cpu time 0.32 seconds NOTE: There were 5 observations read from the data set LIBRARY.TRV03. NOTE: The PROCEDURE PRINT printed page 117. NOTE: PROCEDURE PRINT used (Total process time): real time 0.08 seconds cpu time 0.01 seconds dataset=uta03 NOTE: The PROCEDURE CONTENTS printed pages 118-120. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.22 seconds cpu time 0.05 seconds NOTE: The infile "/homes/data/ces/2003/interview/uta03.txt" is: File Name=/homes/data/ces/2003/interview/uta03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=23195915 NOTE: 182645 records were read from the infile "/homes/data/ces/2003/interview/uta03.txt". The minimum record length was 126. The maximum record length was 126. NOTE: The data set WORK.UTA03 has 182645 observations and 47 variables. NOTE: DATA statement used (Total process time): real time 7.25 seconds cpu time 2.87 seconds NOTE: There were 182645 observations read from the data set WORK.UTA03. NOTE: The data set LIBRARY.UTA03 has 182645 observations and 47 variables. NOTE: PROCEDURE SORT used (Total process time): real time 6.33 seconds cpu time 1.55 seconds NOTE: There were 5 observations read from the data set LIBRARY.UTA03. NOTE: The PROCEDURE PRINT printed page 121. NOTE: PROCEDURE PRINT used (Total process time): real time 0.04 seconds cpu time 0.00 seconds 30 The SAS System 12:44 Tuesday, April 3, 2007 dataset=utb03 NOTE: The PROCEDURE CONTENTS printed pages 122-123. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.16 seconds cpu time 0.02 seconds NOTE: The infile "/homes/data/ces/2003/interview/utb03.txt" is: File Name=/homes/data/ces/2003/interview/utb03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=62409 NOTE: 879 records were read from the infile "/homes/data/ces/2003/interview/utb03.txt". The minimum record length was 70. The maximum record length was 70. NOTE: The data set WORK.UTB03 has 879 observations and 29 variables. NOTE: DATA statement used (Total process time): real time 0.09 seconds cpu time 0.02 seconds NOTE: There were 879 observations read from the data set WORK.UTB03. NOTE: The data set LIBRARY.UTB03 has 879 observations and 29 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.18 seconds cpu time 0.07 seconds NOTE: There were 5 observations read from the data set LIBRARY.UTB03. NOTE: The PROCEDURE PRINT printed page 124. NOTE: PROCEDURE PRINT used (Total process time): real time 0.15 seconds cpu time 0.01 seconds dataset=utc03 NOTE: The PROCEDURE CONTENTS printed pages 125-126. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.11 seconds cpu time 0.02 seconds NOTE: The infile "/homes/data/ces/2003/interview/utc03.txt" is: File Name=/homes/data/ces/2003/interview/utc03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=45849870 NOTE: 463130 records were read from the infile "/homes/data/ces/2003/interview/utc03.txt". The minimum record length was 98. The maximum record length was 98. NOTE: The data set WORK.UTC03 has 463130 observations and 45 variables. NOTE: DATA statement used (Total process time): 31 The SAS System 12:44 Tuesday, April 3, 2007 real time 13.31 seconds cpu time 6.33 seconds NOTE: There were 463130 observations read from the data set WORK.UTC03. NOTE: The data set LIBRARY.UTC03 has 463130 observations and 45 variables. NOTE: PROCEDURE SORT used (Total process time): real time 20.46 seconds cpu time 3.24 seconds NOTE: There were 5 observations read from the data set LIBRARY.UTC03. NOTE: The PROCEDURE PRINT printed page 127. NOTE: PROCEDURE PRINT used (Total process time): real time 0.13 seconds cpu time 0.01 seconds dataset=utp03 NOTE: The PROCEDURE CONTENTS printed pages 128-129. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.41 seconds cpu time 0.04 seconds NOTE: The infile "/homes/data/ces/2003/interview/utp03.txt" is: File Name=/homes/data/ces/2003/interview/utp03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=197750 NOTE: 5650 records were read from the infile "/homes/data/ces/2003/interview/utp03.txt". The minimum record length was 34. The maximum record length was 34. NOTE: The data set WORK.UTP03 has 5650 observations and 9 variables. NOTE: DATA statement used (Total process time): real time 0.26 seconds cpu time 0.05 seconds NOTE: There were 5650 observations read from the data set WORK.UTP03. NOTE: The data set LIBRARY.UTP03 has 5650 observations and 9 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.40 seconds cpu time 0.07 seconds NOTE: There were 5 observations read from the data set LIBRARY.UTP03. NOTE: The PROCEDURE PRINT printed page 130. NOTE: PROCEDURE PRINT used (Total process time): real time 0.15 seconds cpu time 0.00 seconds dataset=veq03 32 The SAS System 12:44 Tuesday, April 3, 2007 NOTE: The PROCEDURE CONTENTS printed page 131. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.14 seconds cpu time 0.02 seconds NOTE: The infile "/homes/data/ces/2003/interview/veq03.txt" is: File Name=/homes/data/ces/2003/interview/veq03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=4755035 NOTE: 50053 records were read from the infile "/homes/data/ces/2003/interview/veq03.txt". The minimum record length was 94. The maximum record length was 94. NOTE: The data set WORK.VEQ03 has 50053 observations and 39 variables. NOTE: DATA statement used (Total process time): real time 2.08 seconds cpu time 0.54 seconds NOTE: There were 50053 observations read from the data set WORK.VEQ03. NOTE: The data set LIBRARY.VEQ03 has 50053 observations and 39 variables. NOTE: PROCEDURE SORT used (Total process time): real time 2.90 seconds cpu time 0.28 seconds NOTE: There were 5 observations read from the data set LIBRARY.VEQ03. NOTE: The PROCEDURE PRINT printed page 132. NOTE: PROCEDURE PRINT used (Total process time): real time 0.10 seconds cpu time 0.01 seconds dataset=vlr03 NOTE: The PROCEDURE CONTENTS printed pages 133-134. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.10 seconds cpu time 0.01 seconds NOTE: The infile "/homes/data/ces/2003/interview/vlr03.txt" is: File Name=/homes/data/ces/2003/interview/vlr03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=718250 NOTE: LOST CARD. QYEAR=20041 NEWID=1486725 SEQNO=57 ALCNO=0 REC_ORIG=1 VOPREGY=400 VOPREGY_=D VOPMO_C=12 VOPMO_C_=D VOPREGX=15 VOPREGX_=D VOPRGY1= VOPRGY1_= VOPRGY2=A VOPRGY2_= VOPRGY3=A VOPRGY3_= VOPRGY4=A VOPRGY4_= VOPRGY5=200 VOPRGY5_=2 VOPRGY6=200 VOPRGY6_=2 VOPRGY7=200 VOPRGY7_=2 VOPRGY8=200 VOPRGY8_=2 VOPRGY9=200 VOPRGY9_= _ERROR_=1 _N_=1306 NOTE: 14365 records were read from the infile "/homes/data/ces/2003/interview/vlr03.txt". The minimum record length was 49. The maximum record length was 49. 33 The SAS System 12:44 Tuesday, April 3, 2007 NOTE: SAS went to a new line when INPUT statement reached past the end of a line. NOTE: The data set WORK.VLR03 has 1305 observations and 29 variables. NOTE: DATA statement used (Total process time): real time 0.59 seconds cpu time 0.07 seconds NOTE: There were 1305 observations read from the data set WORK.VLR03. NOTE: The data set LIBRARY.VLR03 has 1305 observations and 29 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.53 seconds cpu time 0.07 seconds NOTE: There were 5 observations read from the data set LIBRARY.VLR03. NOTE: The PROCEDURE PRINT printed page 135. NOTE: PROCEDURE PRINT used (Total process time): real time 0.01 seconds cpu time 0.00 seconds dataset=vot03 NOTE: The PROCEDURE CONTENTS printed pages 136-137. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.05 seconds cpu time 0.03 seconds NOTE: The infile "/homes/data/ces/2003/interview/vot03.txt" is: File Name=/homes/data/ces/2003/interview/vot03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=3875904 NOTE: 40374 records were read from the infile "/homes/data/ces/2003/interview/vot03.txt". The minimum record length was 95. The maximum record length was 95. NOTE: The data set WORK.VOT03 has 40374 observations and 27 variables. NOTE: DATA statement used (Total process time): real time 2.34 seconds cpu time 0.46 seconds NOTE: There were 40374 observations read from the data set WORK.VOT03. NOTE: The data set LIBRARY.VOT03 has 40374 observations and 27 variables. NOTE: PROCEDURE SORT used (Total process time): real time 2.36 seconds cpu time 0.29 seconds NOTE: There were 5 observations read from the data set LIBRARY.VOT03. NOTE: The PROCEDURE PRINT printed page 138. NOTE: PROCEDURE PRINT used (Total process time): real time 0.11 seconds cpu time 0.00 seconds 34 The SAS System 12:44 Tuesday, April 3, 2007 dataset=xpa03 NOTE: The PROCEDURE CONTENTS printed pages 139-140. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.68 seconds cpu time 0.03 seconds NOTE: The infile "/homes/data/ces/2003/interview/xpa03.txt" is: File Name=/homes/data/ces/2003/interview/xpa03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=5288863 NOTE: 40373 records were read from the infile "/homes/data/ces/2003/interview/xpa03.txt". The minimum record length was 130. The maximum record length was 130. NOTE: The data set WORK.XPA03 has 40373 observations and 31 variables. NOTE: DATA statement used (Total process time): real time 3.41 seconds cpu time 0.58 seconds NOTE: There were 40373 observations read from the data set WORK.XPA03. NOTE: The data set LIBRARY.XPA03 has 40373 observations and 31 variables. NOTE: PROCEDURE SORT used (Total process time): real time 2.34 seconds cpu time 0.30 seconds NOTE: There were 5 observations read from the data set LIBRARY.XPA03. NOTE: The PROCEDURE PRINT printed page 141. NOTE: PROCEDURE PRINT used (Total process time): real time 0.14 seconds cpu time 0.00 seconds dataset=xpb03 NOTE: The PROCEDURE CONTENTS printed pages 142-143. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.24 seconds cpu time 0.02 seconds NOTE: The infile "/homes/data/ces/2003/interview/xpb03.txt" is: File Name=/homes/data/ces/2003/interview/xpb03.txt, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw-r--, File Size (bytes)=6742291 NOTE: 40373 records were read from the infile "/homes/data/ces/2003/interview/xpb03.txt". The minimum record length was 166. The maximum record length was 166. NOTE: The data set WORK.XPB03 has 40373 observations and 31 variables. 35 The SAS System 12:44 Tuesday, April 3, 2007 NOTE: DATA statement used (Total process time): real time 4.35 seconds cpu time 0.66 seconds NOTE: There were 40373 observations read from the data set WORK.XPB03. NOTE: The data set LIBRARY.XPB03 has 40373 observations and 31 variables. NOTE: PROCEDURE SORT used (Total process time): real time 2.99 seconds cpu time 0.32 seconds NOTE: There were 5 observations read from the data set LIBRARY.XPB03. NOTE: The PROCEDURE PRINT printed page 144. NOTE: PROCEDURE PRINT used (Total process time): real time 0.23 seconds cpu time 0.01 seconds 1895 NOTE: The PROCEDURE CONTENTS printed pages 145-146. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.25 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 3:16.62 cpu time 50.31 seconds