1
0
mirror of https://github.com/sasjs/core.git synced 2026-01-16 13:00:05 +00:00

fix: moving cleanup to temp table for efficiency

This commit is contained in:
Allan Bowe
2021-11-26 11:55:55 +00:00
parent a6e9158814
commit 7bb089e269

View File

@@ -186,12 +186,12 @@ run;
run; run;
%end; %end;
/* update main table */ data &out_ds;
proc append base=&outds data=&out_ds; set &out_ds(where=(filepath ne ''));
run; run;
data &outds; /* update main table */
set &outds(where=(filepath ne '')); proc append base=&outds data=&out_ds;
run; run;
/* recursive call */ /* recursive call */