暂无图片
暂无图片
暂无图片
暂无图片
暂无图片

Oracle命令之DROP USER

zy 2025-01-15
33

Purpose

Use the DROP USER statement to remove a database user and optionally remove the user’s objects.

In an Oracle Automatic Storage Management (Oracle ASM) cluster, a user
authenticated AS SYSASM can use this clause to remove a user from the password file that is local to the Oracle ASM instance of the current node.

When you drop a user, Oracle Database also purges all of that user’s schema objects from the recycle bin.

Do not attempt to drop the users SYS or SYSTEM. Doing so will corrupt your database.

Prerequisites

You must have the DROP USER system privilege. In an Oracle ASM cluster, you must be authenticated AS SYSASM.

Semantics

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.

Restriction on Dropping Users

You cannot drop a user whose schema contains a table that uses a flashback data archive for historical tracking. You must first disable the table’s use of the flashback data archive.

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.

• 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.

• 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.

• Oracle Database invalidates, but does not drop, the following objects in other schemas:

– Views or synonyms for objects in the dropped user’s schema
– Stored procedures, functions, or packages that query objects in the dropped user’s schema

• 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.

• Oracle Database drops all triggers in the user’s schema.

• Oracle Database does not drop roles created by the user.

「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论