Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Number of Transaction Slots
To give credit where credit is due, this came from my friend
K Gopalakrishnan...
The transaction slots are visible as KTUXESLT in X$KTUXE. We can get the number of transaction slots in the rollback segments by
select count(*) ktuxeslt from X$ktuxe group by ktuxeusn;
The # of transaction slots are determined by the database block size.
RF
Robert G. Freeman - Oracle8i OCP
Oracle DBA Technical Lead
CSX Midtier Database Administration
The Cigarette Smoking Man: Anyone who can appease a man's conscience can take his freedom away from him.
-----Original Message-----
Sent: Thursday, March 07, 2002 3: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). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Freeman, Robert INET: Robert_Freeman_at_csx.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:23:37 CST