frm-40654: record updated by another user [message #82034] |
Mon, 14 April 2003 07:33  |
kim
Messages: 116 Registered: December 2001
|
Senior Member |
|
|
hello,
i am getting the error "frm-40654: record has been updated by another user. re-query to see change." this is happening if i commit my form and then try to update data. no one else is using this database/form, so why am i getting this error? thanks.
|
|
|
|
|
|
|
|
|
|
|
|
Re: frm-40654: record updated by another user [message #201040 is a reply to message #82034] |
Thu, 02 November 2006 05:49   |
yogen
Messages: 39 Registered: October 2006 Location: UK
|
Member |
|
|
I also got the same problem.
i executed this query in database.
select * from dba_objects
select do.object_name,sid,s.serial#,s.osuser,
row_wait_obj#, row_wait_file#, row_wait_block#, row_wait_row#, --s.session_id,
dbms_rowid.rowid_create ( 1, ROW_WAIT_OBJ#, ROW_WAIT_FILE#, ROW_WAIT_BLOCK#, ROW_WAIT_ROW# )
from v$session s, dba_objects do
where s.ROW_WAIT_OBJ# = do.OBJECT_ID ;
and from this query i could see the locked object in the database.
identify the concerned table which is locked and release the lock by killing the session usin sid and serial# value.
I think this must help you.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|