1. 程式人生 > >使用PlSQLDeveloper工具查詢Oracle會話數

使用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