简体   繁体   中英

DROP and CREATE on Amazon RDS MySQL Instance

Is it safe to connect to my MySQL RDS Amazon instance and run a DROP and CREATE on the database (Basically re-create the database)?

Example:

DROP DATABASE <db_name>;
CREATE DATABASE <db_name>;

I am just worried that there are some background "fingerprints" that will be wiped, like the database backup etc.

Due to the instance being reserved and not the database (or a database), all databases on the instance will be backed-up.

Watch out, only InnoDB tables will be backed-up on the Automatic backups.

我认为这不会对备份造成任何麻烦。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM