What's new in MySQL 5.7: Configuration Changes System Table Changes Server Changes InnoDB Changes SQL Changes Configuration Changes: 1. The information_schema has table’s that contains system and status variables (Global Variables and Session Variables). As of MySQL 5.7.6 the performance_schema also contains same tables, those are actually intended to replace in information_schema which are deprecated as of MySQL 5.7.6, and will be removed in future releases. 2. As of MySQL 5.7.6 mysqld_safe is no longer installed on Linux systems on which MySQL installed using RPM packages, the server startup and shutdown will be managed by using the system d service. 3. As of MySQL 5.7.6 and later mysql_install_db is moved from s...