Are Oracle Analytic Functions costly? Are Oracle Analytic Functions costly? oracle oracle

Are Oracle Analytic Functions costly?


the analytical functions are not without a cost: they have to store data for intermediate results (running totals, windowing functions...) which needs memory and they also take some processing power. Some functions will need to get to the last row of a result set to be able to return a result (MIN/MAX for example). Most functions will also have an implicit SORT operation.

They are therefore not free in terms of resources but they are SET operations and most of the time they are therefore a lot more efficient than writing custom row-by-row plsql procedure or traditional SQL.

You'll have to compare and benchmark in your specific case but if you use them wisely, you will see that they are a powerful performance tool, not a hindrance.


This depends on how your table is indexed and what functions do you use.

ROW_NUMBER(), for instance, seems to be less efficient than ROWNUM, even if the indexes are used. See this article in my blog for performance comparison:

Oracle's optimizer knows about window functions and can use several tricks like STOPKEY and PUSHED RANK which make them more efficient.

The explain plan indicates a full table scan is performed on the table on which the oracle analytic function was used.

The table scan itself is not bad. This may be optimal indeed, if the TABLE ACCESS to retrieve the values missing in the index is more expensive than filtering and sorting.

Usually, if your table is indexed, the query WHERE and ORDER BY clauses allow using this index for ordering and optimizer considers this index worth using, the WINDOW BUFFER method is used for LAG and LEAD functions.

The engine just keeps a running buffer of 2 rows (or more, depending on the value of the offset) and returns the values from the first and the second row.

However, the optimizer can consider the index not worth using at all.

In this case, it will use WINDOW SORT: same thing but the sorting is done in memory or temporary tablespace.


Some detail on this is available at Jonathan Lewis's blog here.

Really the question should be, are they more or less costly than the alternative, and that will come down to the particular situation. In some cases you may prefer to pull the data to an app server and process it there just because it is generally cheaper/easier to have extra hardware at that level.

But given a choice between doing it in the SQL and adding PL/SQL processing, I'd generally use the SQL.