BookmarkSubscribeRSS Feed
LineMoon
Lapis Lazuli | Level 10

Hello,

Is it possible to allocate  a sas library - in sas 9.2 - from a zip file.

 

likes this :

 

Libname lib "c:/toto/dir.zip" ; ?

 

is  it the avantage  or not ?

 

If I have a dirctory dir1 in dir.zip, is it also to do  : libname lib1  "              /dir1" ?

Thank you

 

 

 

3 REPLIES 3
Kurt_Bremser
Super User

Plainly, no.

Standard libraries in UNIX need to be directories in the filesystem. To access a.zip file as if it was a directory, one would need a special engine; no such engine is present in SAS.

See SAS 9.4 Companion for UNIX Environments, LIBNAME statement

 

If you have a tool that lets you mount a .zip file into the UNIX filesystem (as if it was a physical disk or a network resource), you could use that (X statement) first and then define the libname. Don't know if such a tool exists.

 

Also keep in mind that writing to such a library would consume ample resources. I consider it better and much more performant to unpack the zipped contents, run SAS, and then re-zip the data.

RW9
Diamond | Level 26 RW9
Diamond | Level 26

Yes, I believe currently its only possible to create ZIP files from SAS, not read from them:

http://support.sas.com/documentation/cdl/en/odsug/65308/HTML/default/viewer.htm#p19kppnlyy01n7n18jcf...

 

As I am sure your data will be stored in a some sort of versioned controlled, access restricted system however, so you would need to extract all the data in to that system first before accessing it from SAS.

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 2110 views
  • 3 likes
  • 4 in conversation