While executing the below query, I am getting the error:
ORA-00600: internal error code, arguments: [13013], [5001], [1675658], [773963968], [10], [773963968], [17], []
MERGE INTO nbfc_address_m t1
USING (SELECT a.col2, b.lesseeid
FROM DT_AMRID a,
LEA_AGREEMENT_DTL b
WHERE a.agrid=b.agreementid) t2
ON (t1.bpid=t2.lesseeid)
WHEN MATCHED THEN
UPDATE SET t1.mobile=t2.col2
This is for updating mobile number.
This might be caused by Oracle memory corruption.
Try -
It must help you.
Cheers!!