mysql 可以自动触发 SHOW TABLES 吗?
我有一个包含很多表(> 50000)的数据库,因此“SHOW TABLES”语句需要相对较长的时间。
我正在运行的代码不包含该语句,但每次运行脚本时我仍然看到它显示为“show processlist”。
有没有办法让mysql自动执行该语句?
供参考: 该代码是从命令行运行的 PHP。它使用adodb库来执行mysql语句。我已经删除了 adodb 代码中的 SHOW TABLES 的任何实例,并将其替换为“blabla”,但它仍然显示。
谢谢!
I have a database with a lot of tables (> 50000), as a consequence the "SHOW TABLES" statement takes relatively long.
The code I am running does not contain the statement, but I still see it showing up with "show processlist" each time I run my script.
Is there any way mysql could execute the statement automatically ?
FYI:
The code is PHP running from the command line. It uses the adodb library to execute mysql statements. I have removed any instance of SHOW TABLES in the adodb code and replaced it with "blabla", but it still shows up.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用 GUI 界面,它可能会自动执行 show table...使用命令行界面。
if you're using a GUI interface it may automatically execute show tables... use command line interface.
如果您不以 -A 开头,即使 CLI 也可能调用 SHOW TABLES。
Even the CLI may call SHOW TABLES if you don't start it with -A.