BookmarkSubscribeRSS Feed
aha123
Obsidian | Level 7
I have a large dataset and set up indexes on a couple of columns. Then I wrote a PROC SQL to take advantage of the indexes to get the data from this dataset, but it still takes a long time to return the results. I am wondering if SAS actually uses the indexes to speed up the data retrieval. Does SAS offer any tool to analyze a query? Oracle offers the EXPLAIN command for users to analyze a query to see if it uses the index as intended. So I wonder SAS has a similar tool.
4 REPLIES 4
Peter_C
Rhodochrosite | Level 12
try the _method option like
proc sql _method ;
it will indicate which methods are used
there are papers on the feature
Ksharp
Super User
Hi.
Do you use proc sql to create index? and using proc contents to view the index is really created?
sbb
Lapis Lazuli | Level 10 sbb
Lapis Lazuli | Level 10
Suggestion to the OP: share your code, as part of the SAS-generated log (not just your code statements). This would include both index-creating code and any subsequent retrieval code - using COPY / PASTE in your forum post-reply.

Scott Barry
SBBWorks, Inc.
aha123
Obsidian | Level 7
@Peter Thanks! proc sql _method is exactly what I am looking for.



sbb sounds like a mod but useless.

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 1008 views
  • 0 likes
  • 4 in conversation