home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a523 / 3.ddi / DB3LOAD.BAT < prev    next >
Encoding:
DOS Batch File  |  1987-09-04  |  418 b   |  19 lines

  1. echo off
  2. if "%3" == "" goto argerr
  3. if "%2" == "" goto argerr
  4. if "%1" == "" goto argerr
  5. db3prep %3
  6. if errorlevel 1 goto fatal
  7. sqlplus %1/%2 @%3.sql
  8. if errorlevel 1 goto fatal
  9. sqlload %1/%2 %3.ctl
  10. if errorlevel 1 goto fatal
  11. goto exit
  12. :fatal
  13. echo fatal error, unable to continue
  14. goto exit
  15. :argerr
  16. echo usage:  DB3LOAD userid password dbfname
  17. echo         do not specify file extension in dbfname
  18. :exit
  19.