1、查看被锁的表和解锁
(1)查看被锁的表
select b.owner, b.object_name, a.session_id, a.locked_mode from v$locked_object a, dba_objects b where a.object_id = b.object_id
(2)查看哪个用户、哪个进程造成死锁
select b.username, b.sid,b.serial#, logon_time from v$locked_object a, v$session b where a.session_id = b.sid order by b.logon_time
(3)查看连接的进程
select sid, serial#, username, osuser from v$session
(4)查出锁定表的sid、serial#、os_user_name、machine_name、terminal、锁的type、mode
select s.sid, s.serial#, s.username, s.schemaname, s.osuser, s.process, s.machine, s.terminal, s.logon_time, l.type
from v$session s, v$lock l
where s.sid = l.sid
and s.username is not null
order by sid
这个语句将查找到数据库中所有的DML语句产生的锁,还可以发现,任何DML语句其实产生了两个锁,一个是表锁,一个是行锁。
(5)杀掉进程sid、serial#
alter system kill session'210,11562'
2、什么时候需要commit
DML语言,比如update,delete,insert等修改表中数据的需要commit;
DDL语言,比如create,drop等改变表结构的,就不需要写commit(因为内部隐藏了commit);
(1)DDL 数据定义语言:
create table 创建表
alter table 修改表
drop table 删除表
truncate table 删除表中所有行
create index 创建索引
drop index 删除索引
当执行DDL语句时,在每一条语句前后,oracle都将提交当前的事务。如果用户使用insert命令将记录插入到数据库后,执行了一条DDL语句(如create
table),此时来自insert命令的数据将被提交到数据库。当DDL语句执行完成时,DDL语句会被自动提交,不能回滚。
(2)DML 数据操作语言:
insert 将记录插入到数据库
update 修改数据库的记录
delete 删除数据库的记录
当执行DML命令如果没有提交,将不会被其他会话看到。除非在DML命令之后执行了DDL命令或DCL命令,或用户退出会话,或终止实例,此时系统会自动
发出commit命令,使未提交的DML命令提交。