HomeMogDBMogDB StackUqbar
v2.1

Documentation:v2.1

Supported Versions:

DROP OWNED

Function

DROP OWNED deletes the database objects owned by a database role.

Precautions

  • This interface will revoke the role's permissions on all objects in the current database and shared objects (databases and tablespaces).
  • DROP OWNED is often used to prepare for removing one or more roles. Because DROP OWNED affects only the objects in the current database, you need to run this statement in each database that contains the objects owned by the role to be removed.
  • Using the CASCADE option may cause this statement to recursively remove objects owned by other users.
  • The databases and tablespaces owned by the role will not be removed.

Syntax

DropOwned ::= DROP OWNED BY name [, ...] [ CASCADE | RESTRICT ];

Parameter Description

  • name

    Specifies the role name.

  • CASCADE | RESTRICT

    • CASCADE: automatically deletes the objects that depend on the objects to be deleted.
    • RESTRICT: refuses to delete the objects if other objects depend on them. This is the default action.

REASSIGN OWNED and DROP ROLE

Copyright © 2011-2024 www.enmotech.com All rights reserved.