简体   繁体   English

将变量传递到xp_cmdshell

[英]Passing variable into xp_cmdshell

I have a stored procedure in SQL Server that checks for today's backup files (files that has a date in its filename). 我在SQL Server中有一个存储过程,用于检查今天的备份文件(文件名中带有日期的文件)。 After checks, it will move on to robocopy these files to another folder. 经过检查,它会移动到robocopy这些文件到另一个文件夹。

The challenge: In this folder, there could be files from yesterday's or other dates. 挑战:在此文件夹中,可能有昨天或其他日期的文件。 But only today's bak files are required for transfer. 但是,仅需要今天的bak文件即可进行传输。

--@day allows me to capture the day of a month
declare @day char(2)
set @day = RIGHT('00' + CONVERT(NVARCHAR(2),DATEPART(DAY,GETDATE())),2)
--print @day

--In "MyFolder", it might containts files like 
--Project_backupfile_01_2006_02_28_001.bak
--OR Project_backupfile_01_2006_02_27_001.bak

--Currently I need to hard code 28 to represent 28th. How to pass in @day?
EXEC master..xp_cmdshell 'dir d:\myfolder\Project*28*.bak/b'

--Similarly, I would like to pass in @day variable so that the --Project_backupfile*02_*@day.bak

-- Copy the backup fules from ftp to a local drive
EXEC master..xp_cmdshell 'robocopy "d:\source" "E:\MSSQL\Restore\" Project_backupfile*_02_28*.bak /NFL /NDL /COPY:DAT /R:2 /W:1 /XO /E /Z /MT:10' 

Use a variable to form the command before passing it to xp_cmdshell 使用变量来形成命令,然后再将其传递给xp_cmdshell

declare @cmd varchar(100)
select @cmd = 'dir d:\myfolder\Project*' + datename(day, getdate()) + '*.bak/b'
-- print @cmd
exec master..xp_cmdshell @cmd

Note: datename(day, getdate()) will give you the day of the month as a string. 注意: datename(day, getdate())将为您提供月份中的日期作为字符串。

stuff(convert(varchar(5), getdate(), 101), 3, 1, '_') will give you 02_28 stuff(convert(varchar(5), getdate(), 101), 3, 1, '_')将给你02_28

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM