Contents tagged with Batch
-
IF-THEN-ELSE in Batch Files and DOS Command-Line
http://www.trytoprogram.com/batch-file-if-else/
-
Create Scheduled Job in Oracle to Execute Batch File
from AskTime:
I just did this on my machine with no problems -
C:\>type c:\temp\demo.cmd
@echo off
echo Hello > c:\temp\demo.out
dir c:\temp >> c:\temp\demo.out
exit
SQL> declare
2 … more