Updated on 2024-10-14 GMT+08:00
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
1
|
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.
Helpful Links
Parent topic: SQL Syntax
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
The system is busy. Please try again later.
For any further questions, feel free to contact us through the chatbot.
Chatbot