I need to read in some data within a data step. If I use $30, then the results are blank. If I just use $ for ds_name, then only the first 8 characters are read. The data is one record per line. What else should I do? I am using SAS8.2
Thanks,
-FD
data test;
input ds_name $30 ;
datalines;
prestudy
qs160009
suppqs160009
qs160012
suppqs160012
qs160014
suppqs160014
qs160016
suppqs160016
qs160018
suppqs160018
qs160019;
run;