Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Which data-dictionary store the 'AUTOEXTEND' size?
Hi All,
I am running oracle 8.1.7.4 on Solaris 5.9 (os is 64 bits) and oracle is 32 bit.
I have this script:
spool create_small_tbsp.log
set echo on
create tablespace dom_small datafile
'/u08/oradata/dom10g/dom10g/dom_small01.dbf'
size 256K autoextend on next 512K extent management local uniform size 128K;
My question is which table/column show the autoextend's size?
I have the following 2 query?
But I don't see the 512K for the "autoextend" value there??
Am I looking at the wrong tables ???
and I look at the data-dictionary tables:
1 select * from dba_tablespaces
2* where tablespace_name = 'DOM_SMALL'
SQL> /
TABLESPACE_NAME BLOCK_SIZE INITIAL_EXTENT NEXT_EXTENTMIN_EXTENTS
DOM_SMALL 8192 131072 131072 1 2147483645 0 131072 ONLINE PERMANENT LOGGING NOLOCAL
FILE_NAME
FILE_ID TABLESPACE_NAME BYTES BLOCKS STATUS
---------- ------------------------------ ---------- ----------
6 DOM_SMALL 786432 96 AVAILABLE 6 YES 3.4360E+10 4194302 64 65536080
Thanks,
Dominica Received on Mon Sep 26 2005 - 20:55:05 CDT
![]() |
![]() |