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 -> Re: Fetch speed of table with long columns.

Re: Fetch speed of table with long columns.

From: <sybrandb_at_yahoo.com>
Date: 24 Aug 2005 04:08:31 -0700
Message-ID: <1124881711.393238.133350@o13g2000cwo.googlegroups.com>


1 Yes it can. Due to the LONG rows can get chained into multiple Oracle blocks.
This will mean a *HUGE* performance hit. Also the size of your record can exceed the Session Data Unit of Sqlnet, resulting in multiple roundtrips. Chaining will however have much more impact than SDU 2 set the SDU in your listener.ora and tnsnames.ora as per the Net 2.3 administrators manual. Note: SDU needs to be a multiple of the MTU of your network card, usually 1500. By default SDU is 2048. 3 run
analyze table <foo> list chained rows into <chained_rows> table, and reorganize your table.

--
Sybrand Bakker
Senior Oracle DBA
Received on Wed Aug 24 2005 - 06:08:31 CDT

Original text of this message

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