使用“FOR XML AUTO,TYPE, ELEMENTS”导出到 xml 文件
当我执行此代码时:
select client.*
from client
FOR XML AUTO,TYPE, ELEMENT
作为对数据库的查询,我得到了所需的输出,但我需要手动保存它。 有没有办法自动保存?
可以安排这个程序吗?
我对 SQL 有点陌生,所以当你回答时请放轻松!
谢谢!
When I execute this code:
select client.*
from client
FOR XML AUTO,TYPE, ELEMENT
as a query to the database, I get the output as desired, but I need to save it manually.
Is there a way to save it automatically?
And is it possible to schedule this procedure?
I'm kinda new to SQL so take it easy when you anwser please!
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建 DTS,或者如果您有较新版本的 SQL Server,则创建 SSIS 包来执行查询并将结果保存到文件中。
使用 SQL Server 代理来安排在需要时运行包的作业。
Create a DTS, or if you have a newer version of SQL Server, SSIS package to perform your query and save the results to a file.
Use the SQL Server Agent to schedule a job which runs the package when required.