I think in most case, initrans=1 should be enough for most tables, as one block has a transaction slot. unless two different session are DMLing the exact same block, oracle will dynamically allcoate another transaction slot.
If you really want to find out the tables maybe need more initrans, try search v$sql with most executions and sql_text like "insert%' or 'delete%' or 'update%' maybe helps. If in oracle 9i, try the following SQL: select * from v$segment_statistics where STATISTIC_NAME='ITL waits' and value>0 ----- Original Message ----- To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]> Sent: Thursday, September 25, 2003 6:13 PM > Tables have default INITRANS value. > I want to set this parameter to a suitable value. Because INITRANS is 1 as default > value and I want to avoid from load of dynamic > But how can I figure out suitable value of this parameter for each table. > > > -- > Please see the official ORACLE-L FAQ: http://www.orafaq.net > -- > Author: <[EMAIL PROTECTED] > INET: [EMAIL PROTECTED] > > Fat City Network Services -- 858-538-5051 http://www.fatcity.com > San Diego, California -- Mailing list and web hosting services > --------------------------------------------------------------------- > To REMOVE yourself from this mailing list, send an E-Mail message > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > the message BODY, include a line containing: UNSUB ORACLE-L > (or the name of mailing list you want to be removed from). You may > also send the HELP command for other information (like subscribing). > > -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: zhu chao INET: [EMAIL PROTECTED] Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services --------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
