ORA-08177 with locked table
问题 After a create table l (id int primary key, val int); insert into l values (0, 0); and initializing two oracle sessions alter session set isolation_level=serializable; the following succession leads to a ORA-08177: can't serialize access for this transaction . session 1 session 2 -----------------------------------+----------------------------------- lock table l in exclusive mode -----------------------------------+----------------------------------- lock table l in exclusive mode ----------