Bonjour,

Je cherche à modifier une clause de stokage sur un tablespace.
J'aimerai augmenter la taille de l'initial extent par défaut.
Malheureusement, je n'arrive pas à le faire avec un alter tablespace ou avec un create tablespace (ORA-25143 à chaque fois).
auriez vous des pistes?



Code : Sélectionner tout - Visualiser dans une fenêtre à part
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