查看Oracle数据库某用户的连接信息

执行以下语句可查出用户TJAMIS_LXF连接信息:

select schemaname, osuser, process, machine, port, terminal, program
  from v$session
 where username = 'TJAMIS_LXF'
 order by osuser;
原文地址:https://www.cnblogs.com/liudi1992/p/5920295.html