Search code examples
mysqlinnodbazure-database-mysql

Creating MyISAM Table in Azure database for MySQL is enable?


When I create table that engine is MyISAM in Azure database for Mysql, Got Error "ERROR 1030 (HY000): Got error 1 from storage engine"

How do I fix it? or can I use MyISAM table in Azure database for MySQL?

cli screen captuer


Solution

  • Correct - MYISAM is not supported in Azure Database for MySQL, primarily due to the lack of transaction support which can potentially lead to data loss. This is one of the reasons MySQL switched over to InnoDB as the default.

    Jason Azure DB for MySQL team