如何使用 TSQL 删除 .txt 文件,而不使用 xp_cmdshell
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 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 :-)