Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: HOW TO FIGURE OUT SUITABLE INITRANS VALUE FOR A TABLE
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
> 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: <A.Bahar_at_billing-components.com
> INET: A.Bahar_at_billing-components.com
>
> 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: ListGuru_at_fatcity.com (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: chao_ping_at_vip.163.com 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: ListGuru_at_fatcity.com (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).Received on Thu Sep 25 2003 - 05:29:39 CDT