Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试创建一个以库名称作为输入的宏,该宏在该库中的所有数据集上循环,并列出每个数据集中的数据集名称和 obs 数......有没有办法通过查询字典来获得这个?
不能保证 obs 的数量是准确的,但通常是在您没有处理 SQL 删除或其他可能不会更新元数据的事情的情况下。
proc sql; create table mycols as select * from dictionary.tables where libname="LIBRARYNAME"; quit;
你可能想要 NOBS,MEMNAME。