diff --git a/sas/sasjs/macros/mpe_refreshtables.sas b/sas/sasjs/macros/mpe_refreshtables.sas index 0baab24..d3388a5 100644 --- a/sas/sasjs/macros/mpe_refreshtables.sas +++ b/sas/sasjs/macros/mpe_refreshtables.sas @@ -327,7 +327,10 @@ proc sql; from statustabs group by 1; create table work.statuslibs as - select a.*, b.catalog_cnt + select coalesce(a.libref,b.libref) as libref, + a.libsize, + a.table_cnt, + b.catalog_cnt from work.sumdsn a full join work.sumcat b on a.libref=b.libref;