0

In the Azure portal I set the value of server parameter lower_case_table_names to 2 and successfully saved, but when I login to the server the change is not reflected:

mysql> SHOW VARIABLES LIKE 'lower%';
+------------------------+-------+
| Variable_name          | Value |
+------------------------+-------+
| lower_case_file_system | ON    |
| lower_case_table_names | 1     |
+------------------------+-------+
2 rows in set (0.26 sec)

What can I do for this change to take effect?

4

1 回答 1

1

您可能需要触发服务器重新启动,据我所知,问题是Azure Database for MySQL不直接支持它。

解决方法是向上扩展服务器的vCore,然后再缩减以触发重新启动。

希望能帮助到你!

于 2018-11-13T05:38:09.807 回答