Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Table defragmentation/resizing question: Is this dangerous ?
In article <38837853.7062537_at_news.risq.qc.ca>,
gdallair_at_criq.qc.ca (Guy Dallaire) wrote:
> Suddenly, I'm starting to doubt about a procedure used here:
>
> - On a production database, table A goes to its MAX EXTENT REACHED
>
> Resolution:
>
> - The DBA exports the table with export (CONSISTENT=Y)
> - The DBA drops the table (Or truncates and adjust storage)
> - The DBA re-imports the table
>
> Is this OK or should I arrange for ALL USERS to exit and prevent them
> to connect during this intervention ?
>
> If the DBA permits the users to connect whil fixing the problem, while
> the table is dropped and while it is in the process of being reloaded,
> I wonder what happens if users are hitting the table (inserting or
> deleting in it).
>
> Isn't the integrity of the data compromised ?
>
> Thanks
>
This does not sound like it will maintain database intergrity. I would try this:
alter table schema.table storage (maxextents unlimited);
Good Luck!
Sent via Deja.com http://www.deja.com/
Before you buy.
Received on Tue Jan 18 2000 - 12:06:22 CST
![]() |
![]() |