sql与dos部署
如何自定义下面的 FOR 命令以按照文件名中前缀的数字顺序循环访问数据库文件夹内的文件?
FOR /R ../Database %%f IN (*.sql) DO sqlcmd -S %1 -d %2 -U %4 -P %5 -i "%%~f" >>>日志/%2_DBInstall.log ||转到错误
数据库文件夹包含: 001_usp_procedure1.sql 002_ups_procedure2.sql
非常感谢,
How can I customize the the FOR command below to loop through the files inside the Database folder following the order of the number prefixed in the file name?
FOR /R ../Database %%f IN (*.sql) DO sqlcmd -S %1 -d %2 -U %4 -P %5 -i "%%~f" >> Logs/%2_DBInstall.log || goto errors
Database folder contains:
001_usp_procedure1.sql
002_ups_procedure2.sql
Thanks very much,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请尝试以下操作
它也应该适用于递归目录(进程按全局文件名排序,而不考虑路径......我理解问题吗?)
请注意,正在使用两个临时文件。小心名称(或使用真实的临时文件)
Please try the following
It should work for recursive directories too (process is sorted by global filename without taking account of the path ... did I understand the problem?)
Please note that two temp files are being used. Be careful with the names (or use real temp files)