"ERROR: Utility file write failed. Probable disk full condition" occurs in SASĀ® 9.1 and later releases


When you receive the following ERROR in your SAS log, you should check to see whether you are coding the SAS system option UTILLOC:

ERROR: Utility file write failed. Probable disk full condition.

If you are using the default, which is UTILLOC=WORK, you need to either increase your WORK space allocation or change the SAS system option UTILLOC to reference a different location. See the example syntax of this change below:

UTILLOC = "location" | ("location1", "location2", ...)

In the code above, location can be one of the following:

In SAS 9.1 and later releases, you can include any of the following keywords in your ALLOC command:

Here is an example:

UTILLOC=('ALLOC UNIT(SYSDA) CYL SPACE(500,500) UCOUNT(2)')

Note: In the example above, you must use a valid UNIT parameter for your site as well as the necessary space and volume counts.

For additional information, refer to the following SAS Notes: