SAS program content error

I am trying to list the contents of a Sasuser sas library with the default sas 9 setting. From Explorer, the library contains a table and directories. I wonder what went wrong. In addition, I can run the contents of proc on Sashelp. all and a separate table under Sasuser, e.g. Sasuser.Mysales2. So I need to make it work. thank

content data proc = Sasuser.all_;

/ * ERROR: SASUSER.ALL_.DATA file does not exist. * /

+3
source share
1 answer

You just didn't have any underline.

proc contents data=Sasuser._all_ ;run;

Greetings

+3
source

All Articles