BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Adam_Black
Obsidian | Level 7

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

1 ACCEPTED SOLUTION

Accepted Solutions
LinusH
Tourmaline | Level 20
No, it's not the same. The main feature of indexes is to allow for direct access to individual records (which in reality mens data page), which is beneficial for small subset operations.
Yes, by omitting an index you are saving space, but again, you will not get the same functionality.
Data never sleeps

View solution in original post

2 REPLIES 2
LinusH
Tourmaline | Level 20
No, it's not the same. The main feature of indexes is to allow for direct access to individual records (which in reality mens data page), which is beneficial for small subset operations.
Yes, by omitting an index you are saving space, but again, you will not get the same functionality.
Data never sleeps
Astounding
PROC Star

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

 

 

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

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.

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
  • 2 replies
  • 3648 views
  • 2 likes
  • 3 in conversation