cubrid.jdbc.driver.CUBRIDException: Your transaction (index 13, cubrid@aplanpdb01|20486) has been unilaterally aborted by the system.
이런 에러가 나는 데 무슨 뜻인가요?
중복되는 데이터를 삭제하기 위해
delete from send_history where user_no = ? and
seq_no in (select a.seq_no from send_history a, send_history b where a.user_no = b.user_no and a.recv_phone = b.recv_phone and a.send_date < b.send_date and a.user_no = ? )
이런 쿼리를 쓰는데.. 매번 발생하는 것이 아니고 아주 가끔씩만 나와요.
에러메시지가 무슨 뜻이고, 어떻게 해결해야 되는지 알려주세요.
|