ALTER DOMAIN Statement

Renames a user-defined domain or data type. Does not rename Java types.

Quick Links:

Go to Parameters

Go to Examples

Go to Usage

Go to Permissions

Syntax

ALTERDOMAIN | DATATYPE } user-type
   RENAME new-name

Parameters

(back to top)

Examples

(back to top)

Usage

(back to top)

The ALTER DOMAIN statement updates the name of the user-defined domain or data type in the SYSUSERTYPE system table.

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.

Side effects:
  • Automatic commit

Permissions

(back to top)

Must be the database user who created the domain or requires the ALTER DATATYPE or ALTER ANY OBJECT system privilege.

Related reference
CREATE DOMAIN Statement