Define delimiter in PROC IMPORT

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;
&nbsp &nbsp &nbsp delimiter=’|’;
&nbsp &nbsp &nbsp getnames=yes;
run;

This post was kindly contributed by SAS & Statistics - go there to comment and to read the full post.