MySQl 错误 1046 与优化表的 cron

发布于 2024-11-29 18:19:22 字数 469 浏览 1 评论 0原文

按照我之前的问题之一,我开始遇到解决方案错误:

ERROR 1046 (3D000) at line 1: No database selected

具有执行权限的 Crong Job db-optimize.sh。

#!/bin/bash
chk="select concat(TABLE_SCHEMA,'.', TABLE_NAME) from information_schema.tables where data_free>0;"

for tbl in $(mysql -u root -ppass -N <<< $chk)
do
  mysql -u root -ppass -N <<< "optimize table $tbl"
done

我查了一下错误代码,它说我需要处于“MySQL”模式。尽管这看起来是代码已经在做的事情。

Following one of my previous questions I have started to get a error with the solution:

ERROR 1046 (3D000) at line 1: No database selected

Crong Job db-optimize.sh with execute permissions.

#!/bin/bash
chk="select concat(TABLE_SCHEMA,'.', TABLE_NAME) from information_schema.tables where data_free>0;"

for tbl in $(mysql -u root -ppass -N <<< $chk)
do
  mysql -u root -ppass -N <<< "optimize table $tbl"
done

I have looked up the error code and it says that I need to be in "MySQL" mode. Although this looks to be what the code is already doing.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

思念满溢 2024-12-06 18:19:22

这个问题是由于没有转义表名引起的,因为我有一个名为“show”的表

This problem was being caused by not escaping the table name and because I had a table called "show"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文