This post was kindly contributed by SAS & Statistics - go there to comment and to read the full post. |
DSD DLM=”|” TRUNCOVER LRECL=4096
proc import datafile=”…” dbms=dlm out=… replace;
      delimiter=’|’;
      getnames=yes;
run;
This post was kindly contributed by SAS & Statistics - go there to comment and to read the full post. |