@romsar this is a generic error message thrown by ERROR_SYS package.
If you have access to the DB, you could use the query from below site to see which are the locked objects and you could kill the session that’s locking the object.
select blocking_session, sid, serial#, wait_class, seconds_in_wait from v$session where blocking_session is not NULL order by blocking_session
select * from v$lock where block = 1
I asked Chat GPT who asked me to use this procedure, but I dunno if it’s safe or not to use it, I didn’t even try it yet :
CREATE OR REPLACE PROCEDURE unlock_record (p_rowid IN ROWID) IS l_lockhandle VARCHAR2(128); BEGIN l_lockhandle := DBMS_LOCK.REQUEST(DBMS_LOCK.X_MODE, p_rowid, release_on_commit => TRUE); END unlock_record;