批处理 mysql 脚本/计划运行批处理作业
有没有办法创建批处理或文本文件来执行 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将其放入名为
C:\RunSQL.bat
的 .bat 中,确保
C:\RunSQL.bat
如下所示:然后运行它
试试吧!
Place this in a .bat called
C:\RunSQL.bat
Make sure
C:\RunSQL.bat
looks like this:then just run it
Give it a Try !!!