DDL Privileges
By default, only administrators can create new metadata objects.Altering or dropping these objects is restricted to the owner of the object (its creator) and administrators.DDL privileges can be used to grant privileges for these operations to other users.
CREATE
-
Allows creation of an object of the specified type
ALTER ANY
-
Allows modification of any object of the specified type
DROP ANY
-
Allows deletion of any object of the specified type
ALL [PRIVILEGES]
-
Combines the
CREATE
,ALTER ANY
andDROP ANY
privileges for the specified type
Note
|
There are no separate DDL privileges for triggers and indexes.The necessary privileges are inherited from the table or view.Creating, altering or dropping a trigger or index requires the |