INGRES SERIALIZATION FAILURE DEADLOCK Error. Need Help
Hi All,
Am trying to insert record using the below query, the query works fine for small bunch of insertion but fails for inserting records more than 250000.
Am not sure is this the INGRES limitation or DBAs would have predefined any rule.
The error am getting for insertion above 250000 records is
: Return :-49900 SQLERROR
: Warning:
: 0[W] 1[ ] 2[ ] 3[ ] 4[ ] 5[ ] 6[W] 7[ ]
: Message:
: E_US1264 The query has been aborted. (Fri Mar 5 10:14:48 2010)
: Rows :0
: GEC Diagnostic:
:
: SERIALIZATION FAILURE
: DEADLOCK
: Examine warning 6
INSERT INTO tab1
(se,
dt,
ae
)
SELECT DISTINCT
a.se,
a.dt,
a.ae,
FROM tab2 a, tab3 c, tab4 g
where ........;
Can anyone help me to overcome this issue.
Much thanks in advance
RNK
|