import - SAS Mainframe to read CSV column names automatically -
import - SAS Mainframe to read CSV column names automatically -
is there way read read csv column names automatically in mainframe environment proc import not supported in mainframe? tried below code working in pc sas not in mainframe sas.
filename filein "abc.cust.file" disp=shr recfm=v; info varnames; infile filein delimiter=',' dsd obs=1 lrecl=32000; input varname $ @@; run;
thanks in advance.
csv import sas mainframe
Comments
Post a Comment