Problemas con storage

F.E.
22 de Julio del 2005
He creado un tablespace y una tabla y he asignado a cada una de ellas valores de storage.

CREATE TABLESPACE TAB_PRUEBA
DATAFILE 'C:oracleoradatapruebaZYTZzPRRR.dbf' SIZE 1M AUTOEXTEND ON NEXT 128K maxsize 2M
default storage (initial 80K next 8K
minextents 1 maxextents 121 pctincrease 1);

CREATE TABLE PRU
(
ID1 CHAR(10),
USUARIO CHAR(10)
)
STORAGE (INITIAL 8K NEXT 8K PCTINCREASE 20 MAXEXTENTS 2);

Sin embargo, cuando ejecuto
SELECT * FROM DBA_TABLESPACES WHERE TABLESPACE_NAME IN ('TAB_PRUEBA');
o
SELECT * FROM DBA_TABLES WHERE TABLES_NAME IN ('PRU');

los resultados son diferentes:
tablespace: min_extents 1, max_extents 2147483645
table: min_extents 1, max_extents 2147483645

Alguien me podria decir donde esta el error?

Gracias