Add the following command line parameters to Chrome.exe launcher
chrome.exe /high-dpi-support=1 /force-device-scale-factor=1
Find the Process IDnetstat -a -o -n to determine the pid of the process running on the used port (80, 3000, etc)shell>mysqldumpshell>db_namet1 > dump.sqlmysqldb_name< dump.sql
shell>mysqldumpshell>db_name> dump.sqlmysqldb_name< dump.sql
--all-databases option:shell>mysqldump --all-databases > dump.sqlshell>mysql < dump.sql
ALTER TABLE, use a “null” alteration; that is, an ALTER TABLE statement that “changes” the table to use the storage engine that it already has. For example, if t1 is a MyISAM table, use this statement:mysql> ALTER TABLE t1 ENGINE = MyISAM;
ALTER TABLE statement, use SHOW CREATE TABLE to display the table definition.REPAIR TABLE if that statement supports the table's storage engine. For example, to repair aMyISAM table, use this statement:mysql> REPAIR TABLE t1;
InnoDB that REPAIR TABLE does not support, use mysqldump to create a dump file and mysql to reload the file, as described earlier.REPAIR TABLE supports, see Section 13.7.2.6, “REPAIR TABLE Syntax”.REPAIR TABLE statement. This can be a more convenient means of repairing tables because you can use the --databases or --all-databases option to repair all tables in specific databases or all databases, respectively:shell>mysqlcheck --repair --databasesshell>db_name...mysqlcheck --repair --all-databases
utf8_general_ciand ucs2_general_ci collations, a workaround is implemented as of MySQL 5.1.62, 5.5.21, and 5.6.5. Upgrade to one of those versions, then convert each affected table using one of the following methods. In each case, the workaround altering affected columns to use the utf8_general_mysql500_ci and ucs2_general_mysql500_cicollations, which preserve the original pre-5.1.24 ordering of utf8_general_ci and ucs2_general_ci.t1 contains one or more problematic utf8 columns. To convert the table at the table level, use a statement like this:ALTER TABLE t1 CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_mysql500_ci;
COLLATE clause):ALTER TABLE t1 MODIFY c1 CHAR(N) CHARACTER SET utf8 COLLATE utf8_general_mysql500_ci;
CREATE TABLE statement in the dump file to use the new collation, and reload the table.CHECK TABLE should report no error.