Data Management (DMS) provides the schema design feature. This feature allows you
to design the schemas of tables in a database based on specific R&D standards. You
can customize R&D processes for different lines of business based on your business
requirements to ensure the consistency of schemas among multiple environments, such
as the development environment, test environment, and production environment. This
topic describes how to use the schema design feature. In the following example, a
physical database is used.
Prerequisites
- The database is of one of the following types:
- MySQL: ApsaraDB RDS for MySQL, PolarDB for MySQL, MyBase for MySQL, PolarDB-X, and MySQL databases from other sources
- OceanBase
- Oracle
Note This feature supports both physical databases and logical databases.
- The database instance to which the database belongs is managed in Security Collaboration mode. For more information, see View the control mode of an instance.
Scenarios
When you develop projects, process new business requirements, or optimize business
operations, you may need to create tables and change schemas. For example, you may
need to create or delete fields or indexes, modify field attributes, or adjust index
composition. In these scenarios, you can use the schema design feature of DMS.
Features
- Automatically checks whether the SQL statements for schema changes conform to specific
R&D standards during the custom R&D process. For example, you can use this feature
to ensure that the fields that are used in the production environment are not deleted.
- Allows you to publish a verified schema change script from one environment to another
one with a few clicks. This feature is applicable when multiple environments are involved
and ensures schema consistency among these environments. This way, the success rate
is improved when the new schema is published to the production environment.
- Allows multiple users to collaboratively change a schema in the DMS console.
Usage notes
- You cannot submit a schema design ticket to delete existing tables. You can delete
tables that are created after you create the ticket.
- After changes are applied to a database, the metadata is also synchronized.
Note You can execute the SHOW CREATE TABLE table_name
or DESC table_name
statement on the SQLConsole tab to check whether the changes take effect.
Procedure
- Log on to the DMS console V5.0.
- In the top navigation bar, click Database Development. In the left-side navigation pane, choose .
- On the Schema DesignTickets page, click Schema Design in the upper-right corner.
- Set the parameters for creating a schema design ticket and click Submit. The following table describes the parameters.
Parameter |
Required |
Description |
Project Name |
Yes |
The name of the project. Enter a name that can help you identify the project. |
Project description |
Yes |
The business background of the project, such as the purpose or objective of the project.
This reduces unnecessary communication.
|
Change Base Database |
Yes |
The database on which you want to perform schema design operations. In this example,
a database in Security Collaboration mode is selected. The type of the environment
in which the database resides must conform to the R&D standards that correspond to
the security rules of the database. For more information about the R&D process, see
Schema Design.
|
Security Rules |
No |
The security rules that you want to apply. DMS automatically selects security rules
after you specify a database.
|
Associated Iterations |
No |
The iteration to be associated with the project. To select an iteration, click Select/Change Iteration. In the Iterations dialog box, find the iteration and click Associate in the Actions column.
|
Change Stakeholder |
Yes |
The stakeholders of the schema design. All the specified stakeholders can view the
ticket details and assist developers in accelerating the development and approval
processes.
Note Irrelevant users other than DMS administrators and database administrators (DBAs)
are not allowed to view the ticket details.
|
- Create a physical table.
Note In addition to the following methods, you can create a physical table on the SQLConsole
tab. For more information, see
Create a table.
- Use the GUI
- Click Create Physical Table.
- Enter the basic information about the table and modify the fields and indexes of the
table.
- Click Save.
- Execute SQL statements
- Click Import SQL Statements.
- In the dialog box that appears, enter the
CREATE TABLE
or ALTER TABLE
statement as required and click OK.
For example, you can execute the following statement to create a table named data_modify
:
CREATE TABLE `data_modify` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary key',
`name` varchar(256) NOT NULL COMMENT 'Name',
`phone` varchar(32) DEFAULT NULL COMMENT 'Phone number',
`sex` varchar(32) DEFAULT NULL COMMENT 'Gender',
`email` varchar(256) DEFAULT NULL COMMENT 'Email address',
`remarks` varchar(1024) DEFAULT NULL COMMENT 'Remarks',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Personal information';
- On the Create Physical Table: data_modify tab, confirm the table information and schema and click Save.
- In the Precheck Result message, view the precheck result.
- If the precheck is passed, click Confirm Changes and Submit to Save.
- If only a warning is displayed, click Ignore the warning and continue to save.. Alternatively, click Close, modify the table schema based on the R&D standards, and then click Save.
- If an error is reported, check the error cause, click Close, modify the table schema based on the R&D standards, and then click Save.
Note
- DMS verifies the preceding SQL statements for table creation or modification based
on the R&D standards that are configured in the default security rules, and then reports
errors and warnings, if any.
- DMS provides nearly 40 R&D standards to help you create tables and modify fields and
indexes. You can configure the R&D standards in security rules as required.
After the precheck is passed, you are navigated to the Project Homepage tab. On the Tables Changed in Project tab, you can view the table that you modified or created and modify or delete other
tables as required.
- Apply the schema changes to the base database.
- Click Perform Changes to Base Database.
- In the Perform Changes to Base Database panel, view the base database, execution strategy, and scheme change script, and
click Submit.
After the schema change operation is approved, the system automatically applies the
schema changes to the base database.
Note
- You can check whether the schema changes are performed as expected on the SQLConsole
tab of the base database.
- Based on the default security rules, you must submit tickets for schema changes. You
can also use custom security rules. For example, you can specify that no approval
is required for schema changes in development databases. You can also specify the
users who can approve schema change tickets in production databases.
- Click Go to Next Node. In the message that appears, click Go to Next Node.
- Apply the schema changes to the production database.
- On the Project Homepage tab, click Perform Changes to Target Database.
- In the Perform Changes to Target Database panel, select the destination database, enter script in the Script to Execute field, and then click Submit.
Note You can also click Add Multiple Databases to execute the script in multiple production databases.
After the schema change operation is approved, the system automatically applies the
schema changes to the production database. You can check whether the schema changes
meet your expectations on the SQLConsole tab of the production database.
- Click Go to Next Node. In the message that appears, click Go to Next Node.
After the ticket is closed, you can click each step to view the change and publishing
records.