BookmarkSubscribeRSS Feed
yudhishtirb
Calcite | Level 5

Hello Team,

 

Greetings

 

We have 2 datasets. On these 2 datasets we are performing some merge operations.

 

What will be impact if

1. input data sets are in Sorted order

2. Input data sets are not in sorted order

 

Thanks In advance

3 REPLIES 3
Kurt_Bremser
Super User

For a DATA step merge, sorting before the merge is mandatory. Exception: if the datasets are stored in SPDS, then the sort is done automatically (this does not reduce the overall resource consumption, you just don't need to write and execute the SORT step on your own)

If you use SAS SQL, no sorting is necessary, as SQL does this on the fly. But there is a big caution: with large datasets, the utilty file of the SQL step can grow out of proportion, and the random accesses to this file will be much less performant than the combined SORT/DATA steps. Perfomance penalties of orders of magnitude have been observed.

LinusH
Tourmaline | Level 20
Addition to @Kurt_Bremser exception list: implicit sort is also being done for SPDE and most SAS/ACCESS to RDBMS engines.
Data never sleeps
LinusH
Tourmaline | Level 20
Addition to @Kurt_Bremser exception list: implicit sort is also being done for SPDE and most SAS/ACCESS to RDBMS engines.
Data never sleeps

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 1086 views
  • 1 like
  • 3 in conversation