BookmarkSubscribeRSS Feed
ath_123
Calcite | Level 5

Hi ,

 

I am having a PROC SQL statement which select count(*) from an Oracle table. The table is having huge number of records. Is there any options/statements or any other way with which I can optimize the query to yield the result much faster.

3 REPLIES 3
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Without seeing the code or the data its hard to say, but one thing you can do is to pass through the processing to the database and then retrieve the result:

 

proc sql;
  connect to oracle (path=...);
  create table WANT as
  select * from connection to oracle (select count(*) from <your_table>);
quit;

This will pass the select count(*) from your table through to the database to process, then it will return the result to SAS.  You could also try filtering your data, I mean count(*) is not the most efficient solution, you will want to be looking at the minimum data, so where out any records you don't need, drop any columns you don't need - * is quite frowned upon:

select count(VAR) 
from (select VAR from HAVE where COND="YES")  
/* Minimise the data with where and only take variables you need */

 

LinusH
Tourmaline | Level 20
Chances are that this query already are being sent to the RDBMS. Use
Options msglevel = I sastrace = ',,,d' sastraceloc = saslog nostsuffix;
to find out.
If this is a case this a matter of Oracle tuning - talk to the DBA.
Data never sleeps
Ksharp
Super User

Yeah. It is Oracle DBA job. You can query Meta Data(Dictionary table) to get the number of records of a Oracle Table.

Ask Oracle DBA how to write this kind of Oracle SQL statement, and Pass - through it by SAS Proc sql .

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 718 views
  • 0 likes
  • 4 in conversation