I have a .bat files that consists of two .wsf file as beloow
REM
REM Create and manipulate .csv file
wscript "Job1.wsf"
REM
REM Load file created from above into Oracle DB
wscript "Job2.wsf"
Job1 manipulates (Excel vlookup) a csv file that is FTP'd on our application server, it then creates a file that we need to load into our DB
Job1 needs to run on our application server where Excel is installed and Job2 needs to run on our web server where our load utility is installed.
How do I go about running one job on one server and anothter job on another server? Any help will be greatly appreciated.
REM
REM Create and manipulate .csv file
wscript "Job1.wsf"
REM
REM Load file created from above into Oracle DB
wscript "Job2.wsf"
Job1 manipulates (Excel vlookup) a csv file that is FTP'd on our application server, it then creates a file that we need to load into our DB
Job1 needs to run on our application server where Excel is installed and Job2 needs to run on our web server where our load utility is installed.
How do I go about running one job on one server and anothter job on another server? Any help will be greatly appreciated.