|
|
Question : Wait 10 seconds in DTS package
|
|
Experts,
I am creating a DTS package that uses ActiveX scripts. What I need is for the DTS package to wait 10 seconds before it goes on to the next step in the DTS package.
Thanks a lot!
***You don't need to read below- unless you want further explanation Using the code "main = DTSTaskExecResult_Success" will not work. I have to have the DTS package wait 10 seconds, before going on to the next step. Also, I prefer to have this in one DTS package.
|
Answer : Wait 10 seconds in DTS package
|
|
I should start rereading my comments before posting :-)
dim WshShell Set WshShell = CreateObject("WScript.Shell") WshShell.Sleep(10000)
|
|
|
|