ALTER USER

    where option can be:

    1. | CREATEDB | NOCREATEDB
    2. | CREATEUSER | NOCREATEUSER
    3. | CREATEEXTTABLE | NOCREATEEXTTABLE
    4. [ ( <attribute>='<value>'[, ...] ) ]
    5. type='readable'|'writable'
    6. protocol='gpfdist'|'http'
    7. | LOGIN | NOLOGIN
    8. | CONNECTION LIMIT <connlimit>
    9. | VALID UNTIL '<timestamp>'
    10. | [ DENY <deny_point> ]
    11. | [ DENY BETWEEN <deny_point> AND <deny_point>]

    The ALTER USER statement is a Greenplum Database extension. The SQL standard leaves the definition of users to the implementation.

    Parent topic: SQL Command Reference