Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: db_file_multiblock_read_count causing full scans to takelonger?
Do you have sga_target set? If so, then db_cache_size is just a
minimum. What are the results if you run this instead:
SELECT LEAST(dcs/(ses*dbs), 1048576/dbs) "CALC", dfmbrc FROM (
SELECT b.value "SES", c.value "DBS", d.value "DFMBRC" FROM v$parameter a, v$parameter b, v$parameter c, v$parameter d WHERE a.name = 'db_cache_size' AND b.name = 'sessions' AND c.name = 'db_block_size' AND d.name = 'db_file_multiblock_read_count'), (SELECT bytes "DCS" from v$sgastat where name = 'buffer_cache');
Thanks,
Brandon
Privileged/Confidential Information may be contained in this message or attachments hereto. Please advise immediately if you or your employer do not consent to Internet email for messages of this kind. Opinions, conclusions and other information in this message that do not relate to the official business of this company shall be understood as neither given nor endorsed by it.
-- http://www.freelists.org/webpage/oracle-lReceived on Wed Dec 20 2006 - 15:14:11 CST
![]() |
![]() |