博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ORA-01940: 无法删除当前连接的用户(解决办法)
阅读量:5238 次
发布时间:2019-06-14

本文共 2607 字,大约阅读时间需要 8 分钟。

SQL> drop user lisi;drop user lisiORA-01940: 无法删除当前连接的用户SQL> select username,sid,serial# from v$session where username is not null;USERNAME                              SID    SERIAL#------------------------------ ---------- ----------AAA                                    12         28AAA                                    13        186AAA                                    21        204AAA                                    24         45AAA                                   143        206LISI                                  145        4876 rows selectedSQL> select username,sid,serial# from v$session where username='LISI';USERNAME                              SID    SERIAL#------------------------------ ---------- ----------LISI                                  145        487SQL> alter system kill session '145,487';System alteredSQL> drop user lisi cascade;SQL> User droppedSQL> select username,sid,serial# from v$session where username='LISI';USERNAME                              SID    SERIAL#------------------------------ ---------- ----------LISI                                  145        487SQL> select username,sid,serial# from v$session where username is not null;USERNAME                              SID    SERIAL#------------------------------ ---------- ----------AAA                                    12         28AAA                                    21        204AAA                                    24         45AAA                                   143        206LISI                                  145        487SQL> alter system kill session'145,487';System alteredSQL> drop user lisi cascade;drop user lisi cascadeORA-01918: 用户 'LISI' 不存在SQL> select username,sid,serial# from v$session where username is not null;USERNAME                              SID    SERIAL#------------------------------ ---------- ----------AAA                                    12         28AAA                                    21        204AAA                                    24         45AAA                                   143        206LISI                                  145        487SQL> select username,sid,serial# from v$session where username is not null;USERNAME                              SID    SERIAL#------------------------------ ---------- ----------AAA                                    12         28AAA                                    21        204AAA                                    24         45AAA                                   143        206LISI                                  145        487

转载于:https://www.cnblogs.com/kool/p/6695647.html

你可能感兴趣的文章
C++结构体的初始化问题
查看>>
spark DataSetHolder.toDF 的问题
查看>>
自定义搜索程序
查看>>
Codeforces.1110E.Magic Stones(思路 差分)
查看>>
【转】Unity3.5 GameCenter基础教程
查看>>
[原]IOS 设备基本信息
查看>>
java 中使用log4j
查看>>
时钟效果
查看>>
C#中使用goto
查看>>
NSData转NSString
查看>>
分享Kali Linux 2016.2第49周虚拟机
查看>>
Xamarin Android项目真机测试闪退
查看>>
(转)C# 泛型详解
查看>>
Excel公式巧用
查看>>
expect实现配置机器信任关系
查看>>
0821: aniy hadoop 1-6的步骤安装总结。。我怕自己忘记
查看>>
常规问题(标签默认边距,文字设置行高)
查看>>
进程与进程描写叙述符(task_struct)
查看>>
Docker镜像制作
查看>>
微信小程序支付功能
查看>>