使用“FOR XML AUTO,TYPE, ELEMENTS”导出到 xml 文件

发布于 2024-10-02 02:23:43 字数 211 浏览 3 评论 0原文

当我执行此代码时:

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 技术交流群。

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

发布评论

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

评论(1

卸妝后依然美 2024-10-09 02:23:43

创建 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.

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