No extent information for the new created table [message #64123] |
Fri, 17 December 2004 17:20 |
Tomato
Messages: 1 Registered: December 2004
|
Junior Member |
|
|
Attached is table creation SQL:
CREATE table test_log (
LOG_ID number not null,
LOG_TEXT varchar2(50))
TABLESPACE FIF_DATA03
PCTFREE 10 PCTUSED 70 INITRANS 10 MAXTRANS 255
STORAGE ( INITIAL 16K NEXT 4096K PCTINCREASE 0
MINEXTENTS 1 MAXEXTENTS 2147483645)
NOCACHE;
However, there is not extent information in all_tables.
Could anyone tell me why this situation happened and how to solve it? Thanks.
|
|
|
|
Re: No extent information for the new created table [message #64132 is a reply to message #64123] |
Mon, 20 December 2004 07:01 |
shimon
Messages: 1 Registered: December 2004
|
Junior Member |
|
|
u probably work with locally managed tablespace and automatic srorage in 9i, uniform allocation, etc ?
if u do - then its a normal picture u see: the database takes care about extent managemnt.
See in doc: ASM - Automatic Storage Management
DBA_TABLSPACES will let u know if your TS is locally managed and /or defined as AUTO-EXTEND.
|
|
|