Hi How do I retrieve options specified on a library while allocating it programatically in SAS 9.1.3? Suppose, I have following statement: libname mylib '/path/to/mylib' compress=yes; So, How do I know that the libref 'mylib' defined above is a compressed library? I could not find any relevant dictionary table which holds this information.... Also, if I run following statement, it prints the info in SAS log, making me think that SAS does hold the information somewhere: libname mylib list; Following are few initial lines of log(which prints compress value): NOTE: Libref= MYLIB Scope= IOM ROOT COMP ENV Engine= V9 Compress= YES Thanks Vinay
... View more