安排 SQL Server 查询执行并输出文件
好吧,伙计们,这应该是一个非常简单的请求。我想每天晚上运行一个查询(IE Select * from tablex
)并让它自动输出到同一系统上的文本文件。
谢谢
Alright guys, this should be a very simple request. I'd like to run a query (IE Select * from tablex
) every night and have it automatically output to a text file on the same system.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在放入 SELECT 语句的步骤中创建一个新的 SQL Server 代理作业。在“高级”中,告诉它输出到文件。完毕。
Create a new SQL Server Agent job, in the step put in your SELECT statement. In Advanced, tell it to output to a file. Done.
查看通过 Windows 安排的 bcp.exe,这可能是最简单的方法...
Look at bcp.exe scheduled via Windows for possibly the simplest way...