ods trace on;
proc contents data = lib.data
ods output Variables;
run;
ods trace off;数据字典方法
proc sql;
create table b as
select distinct * from dictionary.columns
where libname = 'DATA' /*大写*/
and memname = 'MEM';
quit;ods trace on;
proc contents data = lib.data
ods output Variables;
run;
ods trace off;proc sql;
create table b as
select distinct * from dictionary.columns
where libname = 'DATA' /*大写*/
and memname = 'MEM';
quit;
被折叠的 条评论
为什么被折叠?