SAS Programming

DATA Step, Macro, Functions and more
BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
dapenDaniel
Obsidian | Level 7

Hi,

 

I am running SAS on a supercomputer (Linux system) and an error message was shown in the log file.

 

ERROR: An I/O error has occurred on file WORK.CC.DATA.
ERROR: UNIX errno = 122

 

I searched this error message and most of the UNIX errno = 24 rather than 122. What is the difference? 

 

The number of observations is 10,000. I tried to decrease it to 5,000 and even 2,5000 but it did not work. How can I fix this issue? Thanks.

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

See here: https://www-numi.fnal.gov/offline_software/srt_public_context/WebDocs/Errors/unix_system_errors.html

#define EDQUOT          122     /* Quota exceeded */

The server administrator has diligently set quotas in WORK, so one user can't wreck the day for everybody else.

Clean up your WORK before running this step.

 

PS the above link is the third result of a Google search for "UNIX errno = 122". See Maxim 6.

View solution in original post

2 REPLIES 2
Jagadishkatam
Amethyst | Level 16

I believe it indicates the number of datasets that are allowed to be open, please check the link below.

 

http://support.sas.com/kb/49/014.html

 

increase the limit to the number of files that the operating system allows to have open at the same time.

But I do not know how we can increase that limit. You might need to go though the link.

Thanks,
Jag
Kurt_Bremser
Super User

See here: https://www-numi.fnal.gov/offline_software/srt_public_context/WebDocs/Errors/unix_system_errors.html

#define EDQUOT          122     /* Quota exceeded */

The server administrator has diligently set quotas in WORK, so one user can't wreck the day for everybody else.

Clean up your WORK before running this step.

 

PS the above link is the third result of a Google search for "UNIX errno = 122". See Maxim 6.

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

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
  • 2 replies
  • 5607 views
  • 1 like
  • 3 in conversation