oracle 更新不了行数据解决方法
作者:互联网
- 登陆oracle服务器
- su - oracle
- sqlplus / as sysdba
select l.session_id,o.owner,o.object_name from v$locked_object l,dba_objects o where l.object_id=o.object_id and o.owner = '数据库名' and o.OBJECT_NAME = '表名';
SELECT sid, serial#, username, osuser FROM v$session where sid in(5187,6156);
ALTER SYSTEM KILL SESSION '5187,63609';
ALTER SYSTEM KILL SESSION '6156,46506';
`
标签:不了,object,更新,ALTER,owner,session,KILL,oracle,id 来源: https://blog.csdn.net/weixin_43370380/article/details/122360719