BookmarkSubscribeRSS Feed
RebeccaJW
Calcite | Level 5

Hello,

 

I want to merge two datasets as shown below. 

data sub;
	set orig;
	where name="speech";
run;
data main;
	merge sub(in=a) orion.play(in=b);
	by actor;
	if a and b;
run;

If I just run the code above, there is an error saying ERROR: BY variables are not properly sorted on data set WORK.SUB.

 

However, if i sort the data as below:

proc sort data=sub out=sub;
	by actor;
run;

There are still errors saying  

ERROR: Insufficient space in file WORK.'SASTMP-000000713'n.UTILITY.
ERROR: File WORK.'SASTMP-000000713'n.UTILITY is damaged. I/O processing did not complete.
 
Can anyone help me? Thanks!
3 REPLIES 3
PaigeMiller
Diamond | Level 26

How big are these data sets?

--
Paige Miller
RebeccaJW
Calcite | Level 5
There are almost 70000 rows and 8 columns in the data set.
Ksharp
Super User

Are you using SAS University Edition?

Try option TAGSORT .

 

proc sort data=sub out=sub  tagsort ;
	by actor;
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 16. 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
  • 3 replies
  • 574 views
  • 0 likes
  • 3 in conversation