I have an existing data step code to download a .sas7bdat table from http endpoint, and save it into the WORK library, and then read the data in it. The code is like this: filename cp_src filesrvc folderpath="/Public" name="hmeq_train.sas7bdat" recfm=N lrecl=32767;
* Save the table to work.hmeq_train;
filename cp_tgt "hmeq_train.sas7bdat" recfm=N lrecl=32767;
data _null_;
fcopy('cp_src','cp_tgt');
run;
proc print data=work.hmeq_train;
run; But this is in single thread. I have tens of binary .sas7bdat files needs to be downloaded at the same. I noticed that DS2 can leverage multi-thread ability to run program concurrently. But I tried fcopy() or INFILE statement, they both don't work in DS2. Is there a way to do the same thing in DS2?
... View more