批处理 mysql 脚本/计划运行批处理作业

发布于 2025-01-06 12:15:32 字数 232 浏览 1 评论 0原文

有没有办法创建批处理或文本文件来执行 .sql ?

假设:

脚本位置:C:\test.sql 主机名:主机名 端口:1000 用户:我 密码:pw


test.sql -->

select * from table1 ;quit;

如何将所有这些放入 .bat 中,以便我可以使用窗口来安排作业在将来运行

Is there a way to create a batch or a text file to execute .sql ?

Let say :

script location : C:\test.sql
Hostname : host.name
Port : 1000
user : me
password : pw


test.sql -- >

select * from table1 ;quit;

How can I put all these into a .bat so that I can use the window to schedule the job to run in the future

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

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

发布评论

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

评论(1

长梦不多时 2025-01-13 12:15:32

将其放入名为 C:\RunSQL.bat 的 .bat 中,

确保 C:\RunSQL.bat 如下所示:

@echo off
mysql -hhostname -P1000 -ume -ppw -AN < C:\test.sql

然后运行它

RunSQL.bat

试试吧!

Place this in a .bat called C:\RunSQL.bat

Make sure C:\RunSQL.bat looks like this:

@echo off
mysql -hhostname -P1000 -ume -ppw -AN < C:\test.sql

then just run it

RunSQL.bat

Give it a Try !!!

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