开发者

SAS proc contents

开发者 https://www.devze.com 2023-03-05 08:35 出处:网络
I am trying to list content of sas library Sasuser with standard sas 9 setup. From explorer, the library contains Table and catalogs. I am wondering what went wrong. Plus I am able to run proc content

I am trying to list content of sas library Sasuser with standard sas 9 setup. From explorer, the library contains Table and catalogs. I am wondering what went wrong. Plus I am able to run proc contents on Sashelp.__all__ and ind开发者_Go百科ividual table under Sasuser like Sasuser.Mysales2. So what do I need to do to make it work. thanks

proc contents data=Sasuser._all__ ;

/*ERROR: File SASUSER._ALL__.DATA does not exist. */


You were simply missing an underscore.

proc contents data=Sasuser._all_ ;run;

Cheers

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号