BookmarkSubscribeRSS Feed
deleted_user
Not applicable
Hi Folks,


Kind of a newbi here, I have been using SAS for about 6 months and lately I keep running into this error:
"Utility file not found"

All of my other code runs fine and I have narrowed the problem down to this command:

proc sort data=regstep4.registry2003_04
out=regstep4.registry2003_04_s1;
by ID STARTDT;
run;

The weird part is that I know this command works on a dataset that has fewer fields (ie the tow tables are nearly identical in terms of number of records, but one has 2 extra columns of data). When my co-worker runs this command on his PC, he gets no error (he has more RAM) - could this be a RAM issue?
I am running SAS9.1 TS Level 1 M3 if that means anything.

Please help me resolve this before I throttle myself.


Serge
1 REPLY 1
deleted_user
Not applicable
A workaround is to use TAGSORT. Don't ask me why! {=^)


proc sort data=regstep4.registry2003_04
out=regstep4.registry2003_04_s1 TAGSORT;
by ID STARTDT;
run;

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

SAS Enterprise Guide vs. SAS Studio

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 667 views
  • 0 likes
  • 1 in conversation