ORA-02391: exceeded simultaneous SESSIONS_PER_USER limit

旧时模样 提交于 2019-12-11 02:39:02

问题


I'm logging in remotely to my school's oracle server. Apparently I've exceeded the number of simultaneous connections and get the error ORA-02391: exceeded simultaneous SESSIONS_PER_USER limit

I don't have admin privileges. Does anyone know how I can end my current sessions without admin privileges?


回答1:


You don't tell us what sql client you are using.

You can only end sessions started from your machine by stopping the client processes. But this could result in idle sessions that are not disconnected by the server. This is a DBA responsibility.

If you are starting parrellel sessions (from jdbc connection pool for instance) you should limit the parrallel sessions.

But the problem could be your fellow students loggin in with the same user account as you. DBA should raise SESSION_PER_USER or create sepparate users for each student.



来源:https://stackoverflow.com/questions/8459593/ora-02391-exceeded-simultaneous-sessions-per-user-limit

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!