zoukankan      html  css  js  c++  java
  • Oracle中 drop user 和 drop user cascade 的区别

    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。要说明的如下:

    . 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中有表,则在删除表的时候自动删除与该表相关的主键和外键。

    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不会被删除,只会被置为无效

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


    3.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.
    用户模式下的所有触发器全部被删除

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

    ------------------------------------------------------------------------------ 

    Blog: http://blog.csdn.net/tianlesoftware 

    网上资源: http://tianlesoftware.download.csdn.net 

    相关视频:http://blog.csdn.net/tianlesoftware/archive/2009/11/27/4886500.aspx 

    DBA1 群:62697716(); DBA2 群:62697977

    道森Oracle,国内最早、最大的网络语音培训机构,我们提供专业、优质的Oracle技术培训和服务! 我们的官方网站:http://www.daosenoracle.com 官方淘宝店:http://daosenpx.taobao.com/
  • 相关阅读:
    2017-2018-1 20155208 20155212 20155239 实验一 开发环境的熟悉
    2017-2018-1 20155332实验三 实时系统报告
    2017-2018-1 20155332 《信息安全系统设计基础》第九周学习总结
    第9周 实现PWD命令
    2016-2017第一学期 20155332 第八周课堂实践
    2017-2018-1 20155312 《信息安全系统设计基础》第八周学习总结
    20155332实验二 固件编程
    2017-2018-1 20155332 《信息安全系统设计基础》第7周学习总结
    20155332口令破解实验
    2017-2018-1 20155332 《信息安全系统设计基础》第六周学习总结
  • 原文地址:https://www.cnblogs.com/tianlesoftware/p/3610127.html
Copyright © 2011-2022 走看看