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

Popular posts from this blog

php - Android app custom user registration and login with cookie using facebook sdk -

django - Access session in user model .save() -

php - .htaccess Multiple Rewrite Rules / Prioritizing -