Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Streams Capture/LogMiner Builder Crashed with ORA-1280/1341 when it was mining redologs for "Alter table.."
Hi,
Streams Capture/LogMiner builder crashed with the following errors when it was mining through redo logs for "alter table.." stmt. We have added a column to this table with "DEFAULT SYSDATE" and this table has 1 million rows.
Please note that this table is not part of the Streams. (db version: 10.2.0.2, Solaris 2.8)
We have increased the "_sga_size" parameter to 400MB for this capture process and restarted and ran into same issue again. The 10046 trace on LogMiner builder process showing repeated insert/select/update statements on "system.logmnr_spill$", might be related to LogMiner-builder spilling.
Anyone experienced this issue before? will appreciate your help.
Create or replace Type t_RowT as Object (ID Number(28), Tdate Date, Tval Number(38,2), Tprice NUMBER); /
Create or replace Type t_TabT is table of t_RowT;
create or replace Function pipeme(p_Start In Number, v_End Number) return t_TabT
PIPELINED IS
v_Start Number(28) := p_Start;
begin
while v_Start <= v_End loop pipe row( t_RowT(v_Start, (sysdate-v_Start), dbms_random.value(1,v_End), dbms_random.value() )); v_Start := v_Start + 1; end loop; return;
create table strms_test_1m as select * from table(pipeme(1,1000000));
alter table strms_test_1m add (EDate TIMESTAMP default SYSDATE);
Thanks,
Krishna
-- http://www.freelists.org/webpage/oracle-lReceived on Thu Apr 19 2007 - 17:50:30 CDT
![]() |
![]() |