ORACLE 下查看用户session 及 kill 用户session


SQL> drop user test cascade;
drop user test cascade
*
ERROR at line 1:
ORA-01940: cannot drop a user that is currently connected

 

SQL> select sid,serial# from v$session where username='TEST';

       SID    SERIAL#
---------- ----------
      2558        522
      2564         29
      2576       1023

SQL> alter system kill session '2558,522';

System altered.


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM