当前位置: > IT面试 >

如何查看当前ORACLE数据库里面锁的情况?

时间:2019-01-05 21:13来源:未知 作者:IT

查看数据库锁的情况必须要有DBA权限,可以使用一下SQL 语句:

	select object_id,session_id,locked_mode from v$locked_object;
	select t2.username,t2.sid,t2.serial#,t2.logon_time 
	from v$locked_object t1,v$session t2 
	where t1.session_id=t2.sid order by t2.logon_time;

长时间出现的锁可能是没有正常释放的锁。
(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容