Hi,
I would like to add two simple indexes to a large dataset based on "column1" and "column2". Is adding the two simple indexes effectively the same thing as sorting the dataset on "column1" and adding an index based on "column2" assuming that the datasets will not be sorted again in the future?
The options I'm considering are:
proc datasets library=mylib; modify largeDataset; index create column1; index create column2; quit;
vs.
proc sort data=mylib.largeDataset; by column1; run; proc datasets library=mylib; modify largeDataset; index create column2; quit;
Wouldn't the second option be more space efficient than the first?
Thanks for your help!
Adam
SAS version 9.3
There are other considerations besides storage space to hold an index. Mainly, they focus on whether you are trying to retrieve all the observations vs. a subset. Here's an earlier discussion that seems relevant:
https://communities.sas.com/t5/SAS-Procedures/Performance-SQL-vs-MERGE/td-p/117358
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.