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

Home -> Community -> Usenet -> c.d.o.server -> Performance tuning

Performance tuning

From: manny <msmajhail_at_gmail.com>
Date: 1 Nov 2004 23:05:27 -0800
Message-ID: <b7d514bd.0411012305.84926ca@posting.google.com>


1/ INITRANS is a parameter that indicates the concurrency level of transactions when working inside a db block. Where is this parameter stored?
When and how can this be set/changed?

2/ I can find out if there are any chained rows in my database using the "select name, value from v$sysstat where 'table fetch by continued row';
If the number is not zero then there are rows chained. What I do not know is that which table or tables have this problem? I am supposed to use ANALYZE TABLE tablename LIST CHAINED ROWS; to find out. But if I have 100 tables,
 I do not want to run this command one by one against all my 100 tables. How do I figure out where my chained rows are?

3/ Data cache Read Efficiency (RE) is defined as percentage of data reads satisfied by the cache.
If N is total number of reads issued, M is the number of reads that were done against the disk, then N-M is the number that were satisfied by information in the cache.
Therefore, RE=(N-M)/100%. How do I get these stats? Is there a view that contains this information? Do I have to some type of analysis to get them?

4/ There is also a similar question on Procedure Cache efficiency. How do I get the RE for procedure cache. Received on Tue Nov 02 2004 - 01:05:27 CST

Original text of this message

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