Sorry man .. I'm no help with this. Typically any time I'm working with a SP, I already know what I'm looking for and can check the table in the database that's get'n updated to ensure that the SP worked.
Might try this site: http://www.sqlteam.com/article/stored-procedures-returning-data
In the Scheduled Task window, in the "Start in:" text box, did you specify "cscript /nologo" ??
Dim objNetwork
Set objNetwork = WScript.CreateObject("WScript.Network")
strLocalDrive = "K:"
strRemoteShare = "\\myServer\Map\Vol1"
objNetwork.MapNetworkDrive strLocalDrive, strRemoteShare, False
I...
If it's a static list of machines, then creating an array would work. If the list of machines is dynamic (different all the time) then you're going to have to use an inputbox which will require manual interaction.
Array Option:
On Error Resume Next
Dim arrComputers(2)
arrComputers(0) =...
I'm attempting to add an attachment to a MS Access 2010 database via VBScript. But, I do not know the proper syntax for the command, nor can I find it.
.vbs file name: ms.vbs stored on C:from DOS: cscript /nologo C:\ms.vbs
Problem Line: nRS.Fields("Attachments").Value = "C:\ms.txt"
What is...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.