Relatively new to SAS and looking to bulkload data - pipe delimited .dlm - into a MySQL database. I've got the basics nailed down, I believe anyway, but I'm stumped on how to tell SAS the beginning and endings of a data row. Current syntax...
proc append base=abc.metrics (bulkload=yes
bl_delimter='|'
bl_options='errors=0'
bl_delete_datafile=no)
data=abc_metrics_&jid;
run;
Any thoughts, guidance, and comments would be appreciated.