Updated on 2023-10-18 GMT+08:00

Creating a Database

Scenarios

After your GaussDB(for MySQL) instance is created, you can create databases on it.

Constraints

  • This operation is not allowed when another operation is being performed on your DB instance.
  • After a database is created, the database name cannot be changed.

Procedure

  1. Log in to the management console.
  2. Click in the upper left corner and select a region and a project.
  3. Click in the upper left corner of the page, choose Database > GaussDB(for MySQL).
  4. On the Instances page, click the instance name to go to the Basic Information page.
  5. In the navigation pane on the left, choose Databases. On the displayed page, click Create Database. In the displayed dialog box, enter a database name, select a character set, and authorize permissions for users. Then, click OK.

    • The database name can contain 1 to 64 characters. Only letters, digits, hyphens (-), and underscores (_) are allowed. The total number of hyphens (-) cannot exceed 10.
    • You can click Show to view all character sets.
    • The remarks can consist of up to 512 characters. It cannot contain carriage return characters and the special characters (!<"='>&).
    • You can select one or more unauthorized users. If there are no unauthorized users, you can create one.

  6. After the database is created, authorize or delete it on the Databases page.

Creating a Database Through DAS

  1. Log in to the management console.
  2. Click in the upper left corner and select a region and a project.
  3. Click in the upper left corner of the page, choose Database > GaussDB(for MySQL).
  4. On the Instances page, locate the instance and click Log In in the Operation column.
  5. On the displayed login page, enter the username and password and click Log In.
  6. Choose SQL Operations > SQL Window, and enter the following command to create a database:

    create database Database name;