开发者

SAS proc contents

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

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜