Skip to Main Content

Database Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Pre-step to any 'offload efficiency' calculation... ?

1007321Apr 6 2016 — edited May 27 2016

Hello,

In the literature I found a few ratios aiming to compute the 'offload efficiency'

of your Exadata/SuperCluster setup, but I was wondering if, before beginning

to use various columns in V$SQLAREA it wouldn't be wise in the first place

to check whether, amongst all your SQL statements, how many of them are

candidate to offloading... ?

Therefore thinking to first doing something like

select count(*) into TOTAL

from v$sqlarea where PARSING_SCHEMA_NAME

      not like 'SYS%' and                                     

     command_type=3 and IO_CELL_OFFLOAD_ELIGIBLE_BYTES=0;  

and

select count(*)  into CANDID

from v$sqlarea where PARSING_SCHEMA_NAME

      not like 'SYS%' and                                     

     command_type=3 and IO_CELL_OFFLOAD_ELIGIBLE_BYTES>0;

then compute the ratio of candid / total: in this instance if you end up with a

(very) low proportion, isn't it a sign that in your case Exadata wasn't worth it ?

Or even next to useless if you find ratios kinda like 1.48%, or inferior to 1% ?

What do you think ?

Thanks for any help, hint or englightenment...

Regards,

Seb

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jun 24 2016
Added on Apr 6 2016
3 comments
1,143 views