home *** CD-ROM | disk | FTP | other *** search
- echo off
- if "%3" == "" goto argerr
- if "%2" == "" goto argerr
- if "%1" == "" goto argerr
- db3prep %3
- if errorlevel 1 goto fatal
- sqlplus %1/%2 @%3.sql
- if errorlevel 1 goto fatal
- sqlload %1/%2 %3.ctl
- if errorlevel 1 goto fatal
- goto exit
- :fatal
- echo fatal error, unable to continue
- goto exit
- :argerr
- echo usage: DB3LOAD userid password dbfname
- echo do not specify file extension in dbfname
- :exit