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.
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 */
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 .
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.
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.