Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: tablespace full problem

Re: tablespace full problem

From: Alex Shnir <shnira_at_staff.juno.com>
Date: Fri, 09 Jul 1999 11:01:59 -0400
Message-ID: <37860EE7.26D18957@staff.juno.com>


Fragmentation issue. You may not have a free space segment large enough to accommodate that index extension: try running the following to see the free space allocations

  select   'freespace' owner, '       ' object,
           file_id, block_id, blocks, bytes bytes
   from sys.dba_free_space
  where tablespace_name = upper('YOUR_TABLESPACE)   union
  select substr(owner, 1, 15),
           substr(segment_name, 1, 31),
           file_id, block_id, blocks, bytes bytes
  from sys.dba_extents
  where tablespace_name = upper('YOUR_TABLESPACE')   order by 3, 4

>
Received on Fri Jul 09 1999 - 10:01:59 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US