SQL> delete user itp2;
delete user itp2
       *
第 1 行出现错误:
ORA-00903: 表名无效
SQL> drop user itp2;
drop user itp2
*
第 1 行出现错误:
ORA-01940: 无法删除当前已连接的用户
SQL> drop user itp2;
用户已删除。
SQL> drop user itp;
drop user itp
*
第 1 行出现错误:
ORA-01922: 必须指定 CASCADE 以删除 'ITP'
SQL> drop user itp cascade;
用户已删除。
SQL>
drop user ; 仅仅是删除用户,
drop user ×× cascade ;会删除此用户名下的所有表和视图。

user
Specify the user to be dropped. Oracle Database does not drop users whose schemas 
contain objects unless you specify CASCADE or unless you first explicitly drop the 
user's objects.

CASCADE 
Specify CASCADE to drop all objects in the user's schema before dropping the user. You 
must specify this clause to drop a user whose schema contains any objects.

使用cascade参数可以删除该用户的全部objects。要说明的如下:

1 If the user's schema contains tables, then Oracle Database drops the tables and 
automatically drops any referential integrity constraints on tables in other schemas 
that refer to primary and unique keys on these tables.

如果用户的schema中有表,则在删除表的时候自动删除与该表相关的主键和外键。

2 If this clause results in tables being dropped, then the database also drops all 
domain indexes created on columns of those tables and invokes appropriate drop 
routines. 
如果用户的schema中有表,则在删除表的时候自动删除与该表相关的索引。

3 Oracle Database invalidates, but does not drop, the following objects in other 
schemas:
删除用户时,下列在其他用户中的objects不会被删除,只会被置为无效

1 Views or synonyms for objects in the dropped user's schema
视图,同义词

2 Stored procedures, functions, or packages that query objects in the dropped 
user's schema
存储过程,函数,包

4 Oracle Database does not drop materialized views in other schemas that are based 
on tables in the dropped user's schema. However, because the base tables no 
longer exist, the materialized views in the other schemas can no longer be 
refreshed.
其他用户建立的基于被删除用户的物化视图不会被删除,只是不能在刷新了。

5 Oracle Database drops all triggers in the user's schema.
用户模式下的所有触发器全部被删除

6 Oracle Database does not drop roles created by the user
被删除用户建立的其他用户不会被删除

最新文章

  1. category中重写方法?
  2. idea intellij 混淆anroid代码
  3. ListView使用item显示不同布局
  4. node.js Websocket实现扫码二维码登录---GoEasy
  5. OpenStack 虚拟机监控方案确定
  6. c# 获取mac地址的2种方法
  7. github多人协作
  8. 关于ajax的那些事
  9. ABP官方文档翻译 5.1 Web API控制器
  10. T-SQL中的APPLY用法(半翻译)
  11. Sublime Text3介绍和插件安装——基于Python开发
  12. 《剑指offer》丑数
  13. JavaScript Array some() 方法
  14. HasThisTypePatternTriedToSneakInSomeGenericOrParameterizedTypePatternMatchingStuffAnywhereVisitor
  15. MogileFS-2.44 安装与配置
  16. c++官方文档-按值传递和按引用传递
  17. CentOS-7设置开机进入命令行界面(不进入图形界面)
  18. ryu 下发流表配置
  19. gcc中关于静态库和动态库使用(转)
  20. mongodb 3.4 TAR包启动多个实例

热门文章

  1. RAC4——架构和变化
  2. php单例模式实现对象只被创建一次 mysql单例操作类
  3. UOJ 393 【NOI2018】归程——可持久化并查集
  4. css学习日记
  5. listener does not currently know of 。。。。
  6. 【ActiveMQ入门-9】ActiveMQ学习-与Spring集成2
  7. puppet 工作原理
  8. js在html文件中的解析顺序
  9. Apache JMeter配置、安装
  10. IP地址与子网掩码