Small table consume too much tablespace [message #610021] |
Sun, 16 March 2014 10:33 |
|
quangnd
Messages: 2 Registered: March 2014
|
Junior Member |
|
|
Hi,
I have a small table like that
create table TRANSACTION_DETAIL
(
transaction_detail_seq NUMBER(10) not null,
user_name VARCHAR2(50),
host_name VARCHAR2(50),
host_address VARCHAR2(50),
description VARCHAR2(200) not null,
transaction_id NUMBER(10) not null,
inserted_date DATE default sysdate not null
)
tablespace USERS
In that table I have only 12630 rows but it consume 1342177280 bytes (1.3 Gig) in USERS tablespace.
Please help.
|
|
|
|
|
|
|
|