select sid, serial#, username, osuser FROM v$session where sid in (select session_id from v$locked_object)

通过这个语句查询出进程

然后通过查询出来的SID和SERIAL#杀进程

exec rdsadmin.rdsadmin_util.kill(SID, SERIAL#)

比如:exec rdsadmin.rdsadmin_util.kill(1948, 17304)