问题 今天在PL-SQL Developer中使用drop table删除一个表时提示ORA-00054:resource busy and acquire with nowait specified,原因是之前使用了select for update命令没有commit就关闭了,导致该表被锁住 方案 使用SYSDBA账户登录执行一下命令查看数据库锁信息 select t1.username, t1.sid, t1.serial#, t1.logon_time from v$session t1, v#locked_object_t2 where t1.sid = t2