Pular para o conteúdo

Fóruns Banco de dados Oracle Removendo um índice teimoso… Removendo um índice teimoso…

#85564
Rodrigo Almeida
Participante

    Marcio,

    Poste o resultado do select abaixo:

    SQL> select owner, object_name, object_type, status
    2 from dba_objects
    3 where object_name = ‘NOME_INDEX’;

    SQL> select owner, segment_name, segment_type, tablespace_name, bytes/1024/1024
    2 from dba_segments
    3 where segment_name = ‘NOME_INDEX’;

    SQL> select owner, index_name, index_type, table_owner, table_name, table_type, partitioned
    2 from dba_indexes
    3 where index_name = ‘NOME_INDEX’;

    Para ver o que podemos fazer.

    Abraços,
    Rodrigo Almeida