Several proc sort procedures in my code properly sort datasets with a large number of observations (30 million +). However, once it reaches a certain dataset, the proc sort stalls. The program doesn't crash, the log doesn't update, and the dataset doesn't sort. The locked outfile file appears in the output libname location, however the size is 0 kbs. This is a simple procedure: proc sort, by variables, and run command. This dataset is quite larger than the others, but not by much. The by variables exist and have normal values. Any clue as to what may be happening?
Thanks!
Rahul
"The program doesn't crash, the log doesn't update.." How do you know that the process has finished?
FWIW: If you are on a Window's server, and your data are on a different drive than the one where you have SAS installed, you may want to try moving the file onto the same drive where SAS is installed and trying it from there. I.e., it may be a Window's problem!
If the data is large you may want to investigate options such as TAGSORT or options that depend on your OS.
Hi,
Maybe try running the sort with fewer records to see if there isn't something other than the size causing the long response, E.g.:
proc sort data=have(obs=100)
out=want;
by var1;
run;
Regards,
Amir.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.