Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SAS proc contents

Tags:

sas

proc-sql

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 individual 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. */

like image 592
user747229 Avatar asked Feb 28 '26 12:02

user747229


1 Answers

You were simply missing an underscore.

proc contents data=Sasuser._all_ ;run;

Cheers

like image 184
Robert Penridge Avatar answered Mar 02 '26 14:03

Robert Penridge



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!