I have a file name hard coded in a SQL DTS execute process task as shown below:
cmd.exe /c wzunzip \\servername\share\filename.20060411.zip c:\temp\dir\ -o
Can I store a variable and call this file to be unzipped with the current
day/date? How could I use something like this:
Dim sNOW
sNOW = Date
sNOW = (Year(sNOW)*100 + Month(sNOW))*100 + Day(sNOW)