I am writing a code to read off a zip file using 7zip. I have successfully done the same. However, the code makes the command prompt to open and doesn't generate the dataset entirely unless I manually close the command prompt. Is there any way in which the command prompt can be closed automatically? libname Orders "D:\Gautham\ISB\Ram\BSE Project\Data\Orders\SAS\Temp";
filename zipfile PIPE '7za e "D:\...\OISBHHY_060513.zip" "OISBHHY_060513" -y -so';
/*Code for reading File from Zip File*/
data Orders.Raw_Data;
infile zipfile dlm = '|' dsd lrecl = 1024 truncover obs = 10;
input tradesession symbol tmc cmc:$12. cat:$8. bors:$1. ordtype:$1. lp vo vd timestamp:$50. retention acttype:$1. orno:$30. actionid:$30.;
run;
... View more