Change the working library to D-disk for SAS EG 5.1

Hi, I have little space on my C drive, so I want to move my working library for SAS EG 5.1 to a folder on my D drive. How can I do this?

Thank!

+4
source share
2 answers

Assuming you are using EG to work locally, you can modify it in the sasv9.cfg file:

enter image description here

This is usually found in the SASFoundation / nls / en directory (or equivalent language).

( ) TEMP. , SAS /, D- , .

+3

, Config, USER libname:

libname user "d:\saslib\";

. libname (.. data have;, user.have, work.have). , work, , .

+2

Source: https://habr.com/ru/post/1546891/


All Articles