在SQL Server中使用SQL命令删除文件

xiaoxiao2025-01-31  13

exec master.dbo.xp_cmdshell 'del D:\test.txt'

 

在SQL Server中,这个语句可以用来删除D盘下的test.txt文件。 如果'xp_cmdshell'没有启用,可以使用下列语句启用'xp_cmdshell':

exec sp_configure 'show advanced options', 1; reconfigure; exec sp_configure 'xp_cmdshell', 1; reconfigure;

 其中,'1' 表示启用,'0' 表示停用。

 

相关资源:sql 删除文件 job来删除
转载请注明原文地址: https://www.6miu.com/read-5023624.html

最新回复(0)