1

マクロ変数に入れる SAS データセットのサイズを取得しようとしています。それについて良いヒントを得ることができませんでしたが。私が検討しているオプションを以下に示します。

proc sql;
    select *
    from dictionary.tables
    where libname = "REPOS"

;
quit;

proc contents data = repos.ajk;
run;
4

1 に答える 1

5
proc sql noprint;
select put(filesize/1024/1024, 16.2 -L) into :sizeMB from dictionary.tables
where libname = 'MYLIB'
and memname = 'MYTABLE'
;
quit;

%put &sizeMB;
于 2013-09-12T08:21:45.920 に答える