如何使用 TSQL 删除 .txt 文件,而不使用 xp_cmdshell

发布于 2024-10-14 19:11:54 字数 165 浏览 4 评论 0原文

我正在尝试使用 TSQL 在进程结束时删除 .txt 文件。我的限制是我不能使用 xp_cmdshell。我曾尝试使用未记录的 xp_delete_file 但据我所知它只会删除 SQLServer 本机 .ldf 或 .bak 文件。 还有其他方法可以使用吗?我在 SQL Server 2008 R2 中运行。

I am trying to use TSQL to delete a .txt file at the end of a process. My restriction is that I cannot use xp_cmdshell. I had tried using the undocumented xp_delete_file but from what I can find it will only delete SQLServer native .ldf or .bak files.
Is there another approach that can be used? I am running in SQL server 2008 R2.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

贩梦商人 2024-10-21 19:11:55

使用 SQL Server 代理 CmdExec 作业步骤?这可以运行“del”...

http://msdn.microsoft.com/ en-us/library/ms190264.aspx

在第 8 步中,您将有 del c:\importpath\toasted.txt

您对问题的评论表明您正在运行“SQL 作业” ,因此无需过度使用 CLR 或 sp_OA% 解决方案:-)

Use SQL Server Agent CmdExec job step? This can run "del"...

http://msdn.microsoft.com/en-us/library/ms190264.aspx

In step 8 you'd have del c:\importpath\toasted.txt

Your comment to your question states you are running a "SQL job", so no need to overkill with CLR or sp_OA% solutions :-)

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