Renames a user-defined domain or data type. Does not rename Java types.
ALTER { DOMAIN | DATATYPE } user-type RENAME new-name
ALTER DOMAIN Address RENAME MailingAddress
The ALTER DOMAIN statement updates the name of the user-defined domain or data type in the SYSUSERTYPE system table. See Reference: Building Blocks, Tables, and Procedures > System Tables and Views > System Views > SYSUSERTYPE System View.
You must recreate any procedures, views or events that reference the user-defined domain or data type, or else they will continue to reference the former name.
See also Reference: Building Blocks, Tables, and Procedures > SQL Data Types.
Automatic commit
Must have DBA authority or be the database user who created the domain.