› Fóruns › Banco de dados Oracle › ORA-30036 – Erro ao extender TS de UNDO, mas tem 90% free › ORA-30036 – Erro ao extender TS de UNDO, mas tem 90% free
23 de agosto de 2012 às 9:09 pm
#104307
Participante
everson, dei uma consultada rapida no oracle support e veja o que eles indicam como solução no note “ora-13236 Internal Error In R-Tree Processing During Heavy DML [ID 443422.1]”
Workaround
Use the following workaround until Bug 4729792 is fixed. Set SDO_DML_BATCH_SIZE = 1 for indexes having this problem.
SQL> connect mdsys
SQL> update SDO_INDEX_METADATA_TABLE
set SDO_DML_BATCH_SIZE = 1
where sdo_index_owner =
and sdo_index_name = ‘INDEX_NAME’;
SQL> commit;
Bug4729792 is fixed with the release of Oracle11g.
Execute o procedimento e veja se isso resolve o seu problema!