Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: TOAD server Statistics - how to interpret?
a)
1 you will notice a performance hit, as pl/sql needs to be retrieved from
dictionary
2) any chained row that needs to be retrieved will result in extra I/O
b) 1) increase shared_pool_size in init<sid>.ora 2) This depends. Analyze the schema. If you have tables with the averagerecord is bigger than the db_block_size (because maybe you have a long in that table) then you have a problem. I would if possible increase the db_block_size (and recreate the database) because I have records which are BY DESIGN bigger than db_block_size. If that's not the case, export the table, drop it, recreate it with a higher PCTFREE and import it.
Hth,
--
Sybrand Bakker, Oracle DBA
Øystein Ørnegård <Oystein.Ornegaard_at_fa.uib.no> wrote in message
news:37EF222D.C653948B_at_fa.uib.no...
> TOAD server Statistics - how to interpret?
>
> I have installed TOAD (Tool for Oracle Application Developers) and I
> have just started using it when I run accross Server Statistics tool and
> find two warningsigns (red dots):
>
> 1) library cache pin hit ratio value = 8485,26 (shared pool area too
> small)
>
> 2) chained fetch ratio value = 0,2765 (PCTFREE too low for a table)
>
> a) what is the impact of this or what impacts can it have?
> b) how can the problems be corrected?
>
> I am not in charge of the database - I am just trying to learn.
>
> I am very thankful for any response to these questions!
>
> Oystein, Norway
>
Received on Mon Sep 27 1999 - 15:36:17 CDT
![]() |
![]() |