Examples of Granting Database DDL Privileges
-
Granting
SUPERUSERthe privilege to create databases:GRANT CREATE DATABASE TO USER Superuser; -
Granting
JOEthe privilege to executeALTER DATABASEfor the current database:GRANT ALTER DATABASE TO USER Joe; -
Granting
FEDORthe privilege to drop the current database:GRANT DROP DATABASE TO USER Fedor;