Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Number of Transaction Slots
The transaction slots are visible as KTUXESLT in X$KTUXE.
You can get them using this SQL..
select count(*) ktuxeslt from X$ktuxe group by ktuxeusn;
For a complete value you can get the slot size form V$TYPE_SZIE and do a simple math.. Let me know if you can't. I will do that for you
Best Regards,
K Gopalakrishnan
Bangalore, INDIA
-----Original Message-----
Rajesh.Rao_at_jpmchase.com
Sent: Thursday, March 07, 2002 12:04 PM
To: Multiple recipients of list ORACLE-L
I believe someone else had asked this question before, but I did not see a reply. Does anyone know the number of transaction slots in the rollback segment header for block sizes of 4k, 8k, et all?
>From what I have read, for a block size of 2K, its 21 transaction slots.
(Steve Adams at www.ixora.com.au)
For a block size of 8K, its 98 (Jonathan Lewis on Metalink - For 8.1.6)
As per Metalink:
2K - 31 4K - 67 8K - 140
Different answers? What does it depend on? OS Version, Oracle Version, number of extents in rollback segment??
Regards
Raj
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: INET: Rajesh.Rao_at_jpmchase.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- 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). _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: K Gopalakrishnan INET: kaygopal_at_yahoo.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- 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 Mar 07 2002 - 14:28:44 CST