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 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 767 views
  • 0 likes
  • 1 in conversation