You can also check:
- system quotas
- process limits
To check the process limits, ... please have the user (that runs into Sort Execution Failure) submit this code from their SAS session:
data _null_ ;
infile "/proc/&sysjobid/limits";
input ;
put _infile_ ;
run ;
This will print the effective process limits for the SAS session to the log.
One of the limits is for the largest file size the user can create, another is the maximum number of files the process can have open. Either one of these could lead to the error.
BR, Koen