Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: URGENT!!! Extremely slowly table access after delete
My guess is that you're scanning the table. A mass delete will not reset your high-water mark - a table scan will scan up to the high-water mark. Use the truncate command to perform a mass delete (make sure you want to empty the table) - it will reset the high water mark for your table and your indices. -Howie
Marc Brevet Lepreux wrote:
> Hello everybody
>
> We have a big problem with Oracle 7.3.2.3.1 , 7.3.3.4 on NT and
> 7.3.2.3.1 on Aix.
> After a big delete (>100000 rows) on a table we have a slowly table
> access.
> I run a select count (*) , 1minutes for 0 rows. Oracle say to me 'it's
> the block clean out, run a select count (*) and it will be OK'.
> I've been execute this statement and it's the same problem.
> My temporary solution is Export / Drop / Import.
>
> If you have any idea, i'm very interesting
Received on Fri Feb 13 1998 - 00:00:00 CST
![]() |
![]() |