Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: db_file_multiblock_read_count causing full scans to takelonger?

RE: db_file_multiblock_read_count causing full scans to takelonger?

From: Allen, Brandon <Brandon.Allen_at_OneNeck.com>
Date: Wed, 20 Dec 2006 14:14:11 -0700
Message-ID: <04DDF147ED3A0D42B48A48A18D574C45059E268D@NT15.oneneck.corp>


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-l
Received on Wed Dec 20 2006 - 15:14:11 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US