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-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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
  • 3 replies
  • 480 views
  • 0 likes
  • 3 in conversation