Scott,
Here is the info you mentioned
986 data step2(keep=AddType) ;
987 length AddType 8. ;
988 set step1 ;
989
990 AddType=input(MType, best.) ;
991 run ;
NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column).
990:15
NOTE: There were 31 observations read from the data set WORK.STEP1.
NOTE: The data set WORK.STEP2 has 31 observations and 1 variables.
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
Data Set Page Size 4096
Number of Data Set Pages 1
First Data Page 1
Max Obs per Page 501
Obs in First Data Page 31
Number of Data Set Repairs 0
File Name C:\SAS\step1.sas7bdat
Release Created 9.0101M3
Host Created XP_PRO
Alphabetic List of Variables and Attributes
# Variable Type Len
1 MType Num 8
... View more