MySQL database rename fast and safe method (3 kinds)

MySQL database rename fast and safe method (3 kinds)

How to rename MySQL database

How to change the database name of the Innodb engine table and how to operate the MyISAM engine.

If the table is a MyISAM engine, you can go directly to the database directory and mv to rename the folder. Innodb is completely unacceptable and will prompt that the relevant table does not exist.

The first method: rename database is deprecated

RENAME database old_db_name TO new_db_name

This is available for versions 5.1.7 to 5.1.23, but it is not officially recommended and there is a risk of data loss.

The second method: mysqldump backup

1. Create the database that needs to be renamed.
2.mysqldum exports the database to be renamed
3. Delete the original old library (determine whether it is really needed)
Of course, this method is safe, but it will be time-consuming if the amount of data is large.

mysqldump -uxxxx -pxxxx -h xxxx db_name > db_name_dump.SQL #Backupmysqldump -uroot -p123456 -h127.0.0.1 test > test.sql #Backupmysql -uxxxx -pxxxx -h xxxx -e “CREATE DATABASE new_db_name”
mysql -uxxxx -pxxxx -h xxxx new_db_name < db_name_dump.SQL #Restore mysql -uxxxx -pxxxx -h xxxx -e “DROP DATABASE db_name”

The third method: fast and safe traversal of the rename table

I'm going to use a script here, it's very simple, I believe everyone can understand it

#!/bin/bash
# Assume that the db_name database name is changed to new_db_name
# MyISAM can directly change the files in the database directory mysql_login=mysql -uroot -p123456
olddb="db_name"
newdb="new_db_name"

#$mysql_login -e “CREATE DATABASE $newdb
$mysql_login -e 'create database if not exists $newdb'
list_table=$($mysql_login -Nse "select table_name from information_schema.TABLES
    where TABLE_SCHEMA='$olddb'")
for table in $list_table;
do
$mysql_login -e "rename table $olddb.$table to $newdb.$table"
done;
#$mysqlconn -e “DROP DATABASE $olddb”

The rename table command is used here to change the table name. However, if the database name is added after the new table name, the table of the old database will be moved to the new database. Therefore, this method is both safe and fast.

Finally, the usage of rename is attached

Command: rename table original table name to new table name;

For example: Change the name of the table MyClass to YouClass
mysql> rename table MyClass to YouClass;

You cannot have any locked tables or active transactions when you perform a RENAME. You must also have ALTER and DROP permissions on the original table, and CREATE and INSERT permissions on the new table.

If MySQL encounters any errors during a multi-table rename, it will perform a rollback rename of all renamed tables, returning everything to its original state.

Mysql: Using Navicat to implement scheduled backup

1. Functional Description

The data in the database needs to be backed up every day, and the backup can be restored in time if any problem occurs;

2. Implementation steps

Open navicat and click on plan and click on new batch job

C:\Users\ADMINI~1\AppData\Local\Temp\1581090423440.png

Select the database to back up

1581090544692.png

Click Select and Save

1581091294049.png

Click on the upper toolbar to set the scheduled task

1581091153168.png

Click Plan, click Create, and set the execution time.

1581091115424.png

1581091396707.png

The setting is successful, and the data is backed up by default in C:\Users\Administrator\Documents\Navicat\MySQL\servers;

You can also see it by clicking on backup in Navicat. Click to select the backup file to restore the backup.

Confirm that the backup is in C:\Users\Administrator\Documents\Navicat\MySQL\servers;

You can also see it by clicking on backup in Navicat. Click to select the backup file to restore the backup.

1581091790901.png

This concludes this article on 3 quick and safe methods to rename MySQL databases. For more information on MySQL database renaming, please search 123WORDPRESS.COM’s previous articles or continue browsing the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • It's the end of the year, is your MySQL password safe?
  • How to safely shut down MySQL
  • How to gracefully and safely shut down the MySQL process
  • Some suggestions for ensuring MySQL data security
  • How to safely shut down a MySQL instance
  • mysql security management details

<<:  Analysis of the process of deploying nGrinder performance testing platform with Docker

>>:  Clean XHTML syntax

Recommend

A practical record of an accident caused by MySQL startup

Table of contents background How to determine whe...

VMware configuration VMnet8 network method steps

Table of contents 1. Introduction 2. Configuratio...

Several ways to switch between Vue Tab and cache pages

Table of contents 1. How to switch 2. Dynamically...

IE8 Beta 1 has two areas that require your attention

<br />Related articles: Web skills: Multiple...

Detailed explanation of Linux redirection usage

I believe that everyone needs to copy and paste d...

Practice of using Tinymce rich text to customize toolbar buttons in Vue

Table of contents Install tinymce, tinymce ts, ti...

Detailed description of ffmpeg Chinese parameters

FFMPEG 3.4.1 version parameter details Usage: ffm...

How webpack implements static resource caching

Table of contents introduction Distinguish betwee...

Install MySQL 5.7 on Ubuntu 18.04

This article is compiled with reference to the My...

How to build sonarqube using docker

Table of contents 1. Install Docker 2. Install so...

A brief discussion on the implementation of fuzzy query using wildcards in MySQL

In the MySQL database, when we need fuzzy query, ...

The latest popular script Autojs source code sharing

Today I will share with you a source code contain...

How to deploy kafka in docker

Table of contents 1. Build Docker 2. Enter the co...

Detailed explanation of docker network bidirectional connection

View Docker Network docker network ls [root@maste...