1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
70
71
72 data club;
73 infile datalines dsd;
74 input idnumber 1-4
75 name : $18.
76 team : $25-30
77 startwi endwi;
78 datalines;
NOTE: Invalid data for startwi in line 80 1-33.
NOTE: Invalid data for endwi in line 81 1-28.
RULE: ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0
81 CHAR .1219 ALAN ranju red 210 192
ZONE 03333244442766672766233323332222222222222222222222222222222222222222222222222222
NUMR 9121901C1E021EA50254021001920000000000000000000000000000000000000000000000000000
NOTE: Invalid data errors for file CARDS occurred outside the printed range.
NOTE: Increase available buffer lines with the INFILE n= option.
idnumber=102 name=3 DAVID shaw RED 1 team=155 startwi=. endwi=. _ERROR_=1 _N_=1
NOTE: Invalid data for startwi in line 83 1-31.
NOTE: Invalid data for endwi in line 84 1-29.
84 CHAR .1221 JIM rose YELLOW 220 220
ZONE 03333244427676254444523332333222222222222222222222222222222222222222222222222222
NUMR 912210A9D02F35095CCF702200220000000000000000000000000000000000000000000000000000
NOTE: Invalid data errors for file CARDS occurred outside the printed range.
NOTE: Increase available buffer lines with the INFILE n= option.
idnumber=124 name=6 RAVI shankar YEL team=W 177 startwi=. endwi=. _ERROR_=1 _N_=2
NOTE: SAS went to a new line when INPUT statement reached past the end of a line.
NOTE: The data set WORK.CLUB has 2 observations and 5 variables.
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
user cpu time 0.00 seconds
system cpu time 0.00 seconds
memory 790.53k
OS Memory 29352.00k
Timestamp 03/12/2018 07:39:46 AM
Step Count 230 Switch Count 2
Page Faults 0
Page Reclaims 144
Page Swaps 0
Voluntary Context Switches 10
Involuntary Context Switches 0
Block Input Operations 0
Block Output Operations 272
85 ;
86
86 ! proc print data=club;
87 id idnumber;
88 run;
NOTE: There were 2 observations read from the data set WORK.CLUB.
NOTE: PROCEDURE PRINT used (Total process time):
real time 0.01 seconds
user cpu time 0.01 seconds
system cpu time 0.00 seconds
memory 1582.09k
OS Memory 29352.00k
Timestamp 03/12/2018 07:39:46 AM
Step Count 231 Switch Count 0
Page Faults 0
Page Reclaims 150
Page Swaps 0
Voluntary Context Switches 0
Involuntary Context Switches 0
Block Input Operations 0
Block Output Operations 8
89
90 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
102
... View more