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

ruby on rails - Devise Logout Error in RoR -

model view controller - MVC Rails Planning -

php - Working with pretty urls on apache and fastcgi after hhvm installation -