home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a522 / 18.ddi / ORACLE.BAT next >
Encoding:
DOS Batch File  |  1991-02-26  |  405 b   |  20 lines

  1. echo off
  2. sqlpme
  3. if not errorlevel 1 goto single
  4. echo ERROR - Unable to load SQLPME
  5. goto exit
  6. :single
  7. oracle6
  8. if not errorlevel 1 goto sqldba
  9. echo ERROR - Unable to load the single-task driver
  10. goto exit
  11. :sqldba
  12. if not .%1 == . goto password
  13. sqldba startup
  14. goto done
  15. :password
  16. sqldba startup authorization=%1
  17. :done
  18. if errorlevel 1 echo ERROR - Unable to start ORACLE using SQL*DBA
  19. :exit
  20.