篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql ORCL - Taille de Table相关的知识,希望对你有一定的参考价值。
set lines 300
col owner format a20
col segment_name format a30
SELECT owner,
segment_name,
segment_type,
tablespace_name,
bytes/1048576 MB,
initial_extent,
next_extent,
extents,
pct_increase
FROM
DBA_SEGMENTS
WHERE
OWNER = 'DBA_FID' AND
SEGMENT_NAME = 'GYR_BRUT_001' AND
SEGMENT_TYPE = 'TABLE'
/
set lines 300
col owner format a20
col segment_name format a30
SELECT owner,
segment_name,
segment_type,
tablespace_name,
bytes/1048576 MB,
initial_extent,
next_extent,
extents,
pct_increase
FROM
DBA_SEGMENTS
WHERE
SEGMENT_TYPE = 'TABLE'
/
以上是关于sql ORCL - Taille de Table的主要内容,如果未能解决你的问题,请参考以下文章