set
linesize 160
linesize 160
set
pagesize 9999
pagesize 9999
alter
session set nls_date_format=’dd-mon-RR hh24:mi:ss’;
session set nls_date_format=’dd-mon-RR hh24:mi:ss’;
col
tbs format a12
tbs format a12
col
owner format a8
owner format a8
col
segment format a30
segment format a30
col
type format a12
type format a12
select
tablespace_name tbs,owner, segment_name segment, segment_type type,
tablespace_name tbs,owner, segment_name segment, segment_type type,
initial_extent
“init B”,next_extent “next B”,extents EXTENTS, pct_increase
pctinc
“init B”,next_extent “next B”,extents EXTENTS, pct_increase
pctinc
from
dba_segments
dba_segments
where
tablespace_name in (‘SHARED’,’BISD’,’GMDD’,’GMDX’,’WSHD’,’GLD’)
tablespace_name in (‘SHARED’,’BISD’,’GMDD’,’GMDX’,’WSHD’,’GLD’)
and
(next_extent/1024/1024)> (select max(bytes/1024/1024) from dba_free_space
where
(next_extent/1024/1024)> (select max(bytes/1024/1024) from dba_free_space
where
tablespace_name
in (‘SHARED’,’BISD’,’GMDD’,’GMDX’,’WSHD’,’GLD’))
in (‘SHARED’,’BISD’,’GMDD’,’GMDX’,’WSHD’,’GLD’))
order
by tablespace_name,segment_name;
by tablespace_name,segment_name;
select
tablespace_name tbs,owner, segment_name segment, segment_type type,
tablespace_name tbs,owner, segment_name segment, segment_type type,
initial_extent
“init B”,next_extent “next B”,extents EXTENTS, pct_increase
pctinc
“init B”,next_extent “next B”,extents EXTENTS, pct_increase
pctinc
from
dba_segments
dba_segments
where
tablespace_name in (‘APPS_TS_SEED’)
tablespace_name in (‘APPS_TS_SEED’)
and
(next_extent/1024/1024)> (select max(bytes/1024/1024) from dba_free_space
where
(next_extent/1024/1024)> (select max(bytes/1024/1024) from dba_free_space
where
tablespace_name
in (‘APPS_TS_SEED’))
in (‘APPS_TS_SEED’))
order
by tablespace_name,segment_name;
by tablespace_name,segment_name;
Recent Posts