Files
doc-exports/docs/dws/dev/dws_06_0198.html
luhuayi 177cd61a57 DWS DEVG 910.211 version
Reviewed-by: Pruthi, Vineet <vineet.pruthi@t-systems.com>
Co-authored-by: luhuayi <luhuayi@huawei.com>
Co-committed-by: luhuayi <luhuayi@huawei.com>
2025-05-05 07:44:03 +00:00

4.3 KiB

DROP OWNED

Function

DROP OWNED deletes the database objects of a database role.

Important Notes

The role's permissions on all the database objects in the current database and shared objects (databases and tablespaces) are revoked.

Syntax

1
DROP OWNED BY name [, ...] [ CASCADE | RESTRICT ];

Parameters

  • name

    Name of the role whose objects are to be deleted and whose permissions are to be revoked.

  • CASCADE | RESTRICT
    • CASCADE: automatically deletes objects that depend on the affected objects.
    • RESTRICT (default): refuses to delete objects with dependent objects.

Example

Remove all database objects owned by role u1:

1
DROP OWNED BY u1;