Link Search Menu Expand Document

ALTER DATABASE

Updates the configuration of the specified database.

Syntax

ALTER DATABASE <database_name> WITH
    [DESCRIPTION = <description>]

Parameters

Parameter Description
<database_name> The name of the database to be altered.
<description> The description of the database.

Example

The following example alters a description of the database:

ALTER DATABASE my_database WITH DESCRIPTION = 'Database for query management';