BookmarkSubscribeRSS Feed
KAS25
Obsidian | Level 7

ERROR: Insufficient space in file WORK.'SASTMP-000000072'n.UTILITY.

NOTE: File WORK.'SASTMP-000000072'n.UTILITY is damaged. I/O processing did not complete.

WARNING: Limited resources when loading index

Thanks any help or advice would be appreciate

3 REPLIES 3
SASKiwi
PROC Star

Please post the code that is causing the issue. Do you use SAS on your PC or connect to a remote SAS server?

KAS25
Obsidian | Level 7

Remote server--wondering if the work area where the TEMP space is defined filling up??  or is there something I need to code to make this process work.

 

Proc SQL;
 create Index xeltrans on Pcbsusp.seltrans
 (emp_ssn, pp_beg_dt , prcs_pp, txn_pfx_cd, txn_sfx_cd);
INFO: Multiple concurrent threads will be used to create the index.
NOTE: Sort execution failure.
INFO: A single thread will be used to create the index.
ERROR: Insufficient space in file WORK.'SASTMP-000000072'n.UTILITY.
NOTE: File WORK.'SASTMP-000000072'n.UTILITY is damaged. I/O processing did not complete.
WARNING: Limited resources when loading index xeltrans_qtr2 for file PCBSUSP.SELTRANS_QTR2.INDEX

SASKiwi
PROC Star

Talk to your SAS administrator regarding how much WORK space you are using. Normally when you exit your SAS session this space is cleared, but abnormal terminations can leave WORK folders lying around. Usually SAS servers run a regular CLEANWORK process to deal with this. Your administrator will be able to confirm what space you have available.

 

Creating indexes requires the use of WORK utility files that can get rather large, particularly if indexing large datasets.

 

Run this to confirm your WORK folder location:

proc datasets library = WORK;
run;
quit;

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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
  • 1081 views
  • 0 likes
  • 2 in conversation