hai,
i need help.. what i must do if my work library not appear in sever SASOA?
this below is picture of issue..
thank you
Well, the SAS log you've posted is rather clear:
ERROR: Insufficient space in file WORK
Talk to your SAS Admin / IT support team. It looks like either the disk is full or there is a quota setting and your user exceeds the allowed maximum. Eventually there are leftovers from old EG sessions which didn't get cleaned up but count against this quota.
Try looking for a WORK library in your other SAS servers. SAS won't even start if it can't create a WORK library.
This post may be helpful: https://communities.sas.com/t5/Administration-and-Deployment/Library-Appearing-in-EG-under-only-one-...
In fact all servers should show a WORK library and if they don't then it is likely a permissions problem, possibly similar to the above post. What happens if you run a simple test (please post the log) on each of your servers?
data work.class;
set sashelp.class;
run;
And,
In case if you want to check your Work Library location, run this SAS Code:
proc options option=WORK value; run;
And check the path in Log window.
Which means your WORK Location is out of space, you have to clear some space in your work location.
Ask your Windows/Linux Administrator to make some space in WORK Directory path, and try again, your codes should run fine afterwards.
Which means either you can't access that path or it's not even exist (deleted somehow);
You must have to create or get access to that specific WORK path location,
Just get access to that path and you're good to go.
How about other users?
Are they able to access the WORK Lib in their user session?
Well, the SAS log you've posted is rather clear:
ERROR: Insufficient space in file WORK
Talk to your SAS Admin / IT support team. It looks like either the disk is full or there is a quota setting and your user exceeds the allowed maximum. Eventually there are leftovers from old EG sessions which didn't get cleaned up but count against this quota.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.