|
不好意思,你的理解是正确的。
最初由 luyan126115 发布
[B]我看了楼上的说明,认为就是指的次数。是不是在理解上有什么问题?另外随便说一下,MAXEXTENT是建立表空间时default storage选项中的参数,就是说,在该表空间中建立表时如果没有指定存储参数,才会使用表空间default storage选项中的指定的参数。 [/B]
我做了下面的试验来验证:
wyq@ORCL>create table t (name char(1000))
2 storage(minextents 2 maxextents 4);
Table created.
wyq@ORCL>select extent_id,blocks from user_extents where segment_name = 'T' order by extent_id;
EXTENT_ID BLOCKS
---------- ----------
0 16
1 16
wyq@ORCL>begin
2 for i in 1..1000 loop
3 insert into t values (i);
4 commit;
5 end loop;
6 end;
7 /
begin
*
ERROR at line 1:
ORA-01631: max # extents (4) reached in table WYQ.T
ORA-06512: at line 3
wyq@ORCL>select extent_id,blocks from user_extents where segment_name = 'T' order by extent_id
EXTENT_ID BLOCKS
---------- ----------
0 16
1 16
2 16
3 16 |
|