Space allocation problem! Please help! [message #60448] |
Sun, 08 February 2004 23:55 |
Patrick Tahiri
Messages: 119 Registered: January 2004
|
Senior Member |
|
|
Hi,
I have a space allocation problem:
I have a locally managed tablespace with 23600 MB in total and 21200 MB are used so I still have 2400 MB free:
CREATE TABLESPACE "USERS"
LOGGING
DATAFILE '/data/u03/oradata/stat/data01.dbf' SIZE 22600M
REUSE AUTOEXTEND
ON NEXT 16K MAXSIZE 65535M, '/export/u05/oradata/stat/
data02.dbf' SIZE 1000M REUSE EXTENT MANAGEMENT LOCAL UNIFORM
SIZE 102400K
I have extracted some DDL of another schema and I try to implement this DDL as a new user (new schema) on this tablespace. I have about 45 tables to implement and I set for each table a very small storage clause (initial 80K and next 1M):
tablespace USERS
pctfree 10
pctused 40
initrans 1
maxtrans 255
storage
(
initial 80K
next 1M
minextents 1
maxextents unlimited
pctincrease 0
);
The problem is that after a implementing a couple of tables, all the space - 2400 MB - remaining is consumed!! Howcome? I'm just implementing empty tables (DDL) with a so small storage setting? Could someone explain me?
Thank you in advance!
Regards,
Patrick Tahiri.
|
|
|
|
|