使用超级管理员删除 oracle用户
select saddr,sid,serial#,paddr,username,status from v$session where username is not null and username = 'OFBIZ'
alter system kill session '2010,58461' ; (2010 和 58461 分别表示SID和SERIAL# 对应的数据)
全部修改为KILLED状态即可
最后 drop user OFBIZ cascade 删除用户OFBIZ