Analytics Resources: Insights, Best Practices,

Case Studies and More

close
Written by Shwetank Sheel
on December 04, 2013

 

One of the projects we are working on, we noticed that the logical SQL filter 'FETCH FIRST XXX ROWS ONLY' was causing a large drag on performance (40-50%) because of the way the the rownum filter was being applied.

We wanted to remove this ​from applying and didn't really find any clear documentation on how to prevent this. The workaround we went for was removing the ROWNUM_LIMIT_SUPPORTED flag in the DB options.

rownum

Do consider why you are removing this if you are - but if you need to, this should work. You'll need to do this for all databases

You may also like:

Performance Tuning Mobile Analytics Exalytics OBIEE 12c

Oracle BI - Insights delivered Pervasively

The new release of Oracle Business Intelligence Foundation Suite 11g, Release 11.1.1.7.0, features more than two hundred...

Performance Tuning Oracle DB

Determine free space in tablespace

Determine free space in tablespace select tablespace_name, SizeMb, FreeMb, (FreeMb/SizeMb)*100 PercentFree from ( select...