We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
环境:阿里云RDS MySql8数据库 报错: [ERR] 3161 - Storage engine MyISAM is disabled (Table creation is disallowed). 分析: 数据库配置:可能禁用了MyISAM引擎。 数据库版本:较新版本的MySQL可能默认不启用MyISAM存储引擎。 修复方式: 下载SQL文件,将sql语句中的MyISAM修改为InnoDB后执行SQL文件到数据库
sql语句
MyISAM
InnoDB
The text was updated successfully, but these errors were encountered:
No branches or pull requests
环境:阿里云RDS MySql8数据库
报错:
[ERR] 3161 - Storage engine MyISAM is disabled (Table creation is disallowed).
分析:
数据库配置:可能禁用了MyISAM引擎。
数据库版本:较新版本的MySQL可能默认不启用MyISAM存储引擎。
修复方式:
下载SQL文件,将
sql语句
中的MyISAM
修改为InnoDB
后执行SQL文件到数据库The text was updated successfully, but these errors were encountered: