我正在使用与 Azure Database for MySQL 服务器连接的 Moodle 3.8.4。我试图通过右键单击一个活动并选择编辑->复制来复制一个活动。
我已将调试模式设置为 DEVELOPER,然后我看到以下错误消息:
> Unknown table 'learn_nprod.mdl_backup_ids_temp'
DROP TABLE mdl_backup_ids_temp
Error code: ddlexecuteerror
* line 492 of /lib/dml/moodle_database.php: ddl_change_structure_exception thrown
* line 1072 of /lib/dml/mysqli_native_moodle_database.php: call to moodle_database->query_end()
* line 77 of /lib/ddl/database_manager.php: call to mysqli_native_moodle_database->change_database_structure()
* line 332 of /lib/ddl/database_manager.php: call to database_manager->execute_sql_arr()
* line 171 of /backup/util/dbops/backup_controller_dbops.class.php: call to database_manager->drop_table()
* line 40 of /backup/moodle2/backup_stepslib.php: call to backup_controller_dbops::drop_backup_ids_temp_table()
* line 34 of /backup/util/plan/backup_execution_step.class.php: call to create_and_clean_temp_stuff->define_execution()
* line 181 of /backup/util/plan/base_task.class.php: call to backup_execution_step->execute()
* line 178 of /backup/util/plan/base_plan.class.php: call to base_task->execute()
* line 119 of /backup/util/plan/backup_plan.class.php: call to base_plan->execute()
* line 375 of /backup/controller/backup_controller.class.php: call to backup_plan->execute()
* line 3530 of /course/lib.php: call to backup_controller->execute_plan()
* line 3518 of /course/externallib.php: call to duplicate_module()
* line 250 of /lib/externallib.php: call to core_course_external::edit_module()
* line 79 of /lib/ajax/service.php: call to external_api::call_external_function()
在 Azure MySQL 上,我将值更改为:
wait_timeout = 440,max_heap_table_size = 16777216,tmp_table_size = 16777216,innodb_strict_mode = ON
至:
wait_timeout = 3600,max_heap_table_size = 2147483648,tmp_table_size = 536870912,innodb_strict_mode = OFF
我重新启动了 Azure MySQL 服务器。此操作仅在几分钟内解决了我的问题。有什么建议可以绕过这个错误吗?
MySQL 设置在此链接上。
更新:我遵循了这个解决方案,实际上它不使用临时表但是我不明白为什么会发生这种情况以及它是否会对数据库产生影响。