Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Performance Tuning
Hi.
In your application there 70460 FULL TABLE scans
( table scanned ( long ) ) of tables with more than 5
blocks and 38069 FULL table scans ( table scanned ( short))
with 5 or less blocks.
Total_blocks_scanned : 126911699.
Average FULL table scan of long table is :
(Total_blocks_scanned - 5 * Table_scan_short) / Table_scan_long
is about 1800 blocks.
It means a LOT of I/O.
Start screening you V$SQLAREA :
SELECT ..., buffer_gets/executions avg_buffer_gets
from v$sqlarea
where executions > 0
order by buffer_gets/executions desc;
HTH. Michael
In article <37fe2501_4_at_news1.prserv.net>,
"Stephen Gabor" <sgabor_at_removethis.jamesway.com> wrote:
>
> <michael_bialik_at_my-deja.com> wrote in message
> news:7tj198$9rv$1_at_nnrp1.deja.com...
> > Hi.
> >
> > Can you post the result of
> > " SELECT name, value FROM v$sysstat ORDER BY 1" ?
> > It looks like you have performance problem in your
> > application and NOT system.
> >
> > Michael.
>
> The results of your requested query:
>
> NAME
VALUE
> ----------------------------------------------------------------
session 0
> CPU used when call
started 0
CR 2
checkpoints 599
> DBWR cross instance
writes 0
> DBWR free buffers
found 0
requests 0
dblink 0
> Unnecesary process cleanup for SCN
batching 0
> background checkpoints
completed 83
> background checkpoints
started 83
dblink 0
dblink 0
time 0
> cleanouts and rollbacks - consistent read
gets 665
> cleanouts only - consistent read
gets 590
disabled 0
> commit cleanout failures: buffer being
written 16
> commit cleanout failures: callback
failure 0
> commit cleanout failures: hot backup in
progress 0
read 0
inspected 0
deadlocks 0
timeouts 0
> enqueue
waits 0
> exchange
deadlocks 0
inspected 0
time 0
> global lock converts
(async) 0
> global lock converts (non
async) 0
> global lock get
time 0
> global lock gets
(async) 0
> global lock gets (non
async) 0
> global lock release
time 0
> global lock releases
(async) 0
async) 0
> hash latch wait
gets 0
scn 0
> kcmgss read scn without going to
DLM 0
> kcmgss waited for
batching 0
current 170
DLM 0
cpu 0
> parse time
elapsed 0
time 0
time 0
> recovery array
reads 0
> recovery blocks
read 0
usage 0
retries 22
linearized 0
> redo log space
requests 4
> redo log space wait
time 0
> redo log switch
interrupts 0
> redo ordering
marks 0
time 0
time 0
> redo writer latching
time 0
writes 0
> remote instance undo header
writes 0
> remote instance undo
requests 0
> rollback changes - undo records
applied 19
aborts 0
> session connect
time 0
space 0
(disk) 3
length 0
row 44
partitions) 0
> table scans (direct
read) 0
ranges) 0
time 0
> transaction lock background
gets 0
> transaction lock foreground
requests 0
> transaction lock foreground wait
time 0
> transaction
rollbacks 0
> transaction tables consistent read
rollbacks 0
> transaction tables consistent reads - undo records
applied 0
Sent via Deja.com http://www.deja.com/
Before you buy.
Received on Sat Oct 09 1999 - 06:43:32 CDT
![]() |
![]() |