星火燎原

千日修以返初心 万日炼以达极致

导航

使用PlSQLDeveloper工具查询Oracle会话数

PlSQLDeveloper工具提供了会话管理功能。

QQ截图20181202195734

能够查询会话内容、杀死会话、查看会话SQL等操作。

 

常用的会话查询SQL如下:

-- 查询所有会话
select * from v$session where username is not null order by logon_time, sid

-- 查询用户会话
select * from v$session where username = user order by logon_time, sid

-- 查询活动会话
select * from v$session where username is not null and status = 'ACTIVE' order by logon_time, sid

posted on 2018-12-02 20:02  xusweeter  阅读(3145)  评论(0编辑  收藏  举报