1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
SQL>CREATE TABLESPACE "TESTc" LOGGING DATAFILE '/oradata/TEST/testc.dbf'
SIZE 20M REUSE AUTOEXTEND ON NEXT 1M
MAXSIZE UNLIMITED BLOCKSIZE 16384
EXTENT MANAGEMENT LOCAL
SEGMENT SPACE MANAGEMENT AUTO
minimum extent 1M ;
ORA-25143: default storage clause is not compatible with allocation policy
SQL> ALTER TABLESPACE TEST MINIMUM extent 1048576;
ALTER TABLESPACE TEST MINIMUM extent 1048576
ORA-25143: default storage clause is not compatible with allocation policy
SQL> ALTER TABLESPACE TEST default storage (initial 1048576);
ALTER TABLESPACE TEST default storage (initial 1048576)
ORA-25143: default storage clause is not compatible with allocation policy
select tablespace_name, initial_extent, min_extlen, extent_management,allocation_type
from dba_tablespaces
where tablespace_name like'TEST%'
order by 1 desc
1 TESTb 65536 65536 LOCAL SYSTEM
2 TESTa 65536 65536 LOCAL SYSTEM
3 TEST 65536 65536 LOCAL SYSTEM |
Partager