oracle 如何查看当前在线用户

2025-04-16 08:57:07
推荐回答(1个)
回答1:

查看session视图,可以看到连接数据库的用户有哪些。
select username,status from v$session where username is not null;