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 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!

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.

SAS Training: Just a Click Away

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

Browse our catalog!

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