| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> c.d.o.server -> Re: performance of backup degrade continuously
On 24 Jun 2006 09:48:34 -0700, "jshen.cad_at_gmail.com"
<jshen.cad_at_gmail.com> wrote:
>I'm sorry that I did not explain my situation clearly.
>
>The amount of data to be backed up is increasing SLOWLY, because we
>only keep data for around 6 month ( one table for each month). Although
>the number of record increase time, the size of data to back up differs
>not so much. while the time for backup operation increase much faster
>than expected.
>
>
Hi Joe,
There are then 2 possible ways to explain the increasing backup time :
Regarding 1) :
The physical DB size can grow independent of a constant logical data set for a number of reasons:
create table tab2 as select * from tab1 where key <=1000; delete from tab1 where key <=1000;
tab2 takes up some space, but the space released in tab1 is not available for other segments until you reorganise it.
Solution : Check if the space usage percentage of the tables in your DB is continously decreasing.
etc...
![]() |
![]() |