home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / perf22.zip / PERF.BAT < prev    next >
DOS Batch File  |  1992-08-26  |  253b  |  12 lines

  1. @echo off
  2. if "%1"=="" goto usage
  3. if "%2"=="" goto usage
  4. if "%3"=="" goto usage
  5. time < return > time.log
  6. isql -S%3 -U%1 -P%2 -iselect.sql -ooutput
  7. time < return >> time.log
  8. goto exit
  9. :usage
  10. echo Usage: PERF userid password servicename 
  11. :exit
  12.