home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 January / Chip_1997-01_cd.bin / ms95 / disk23 / dir09 / f002530.res < prev    next >
Text File  |  1996-04-02  |  344b  |  18 lines

  1. @echo off
  2. @if not "%3"=="" goto load
  3.  
  4. REM 
  5. REM --- This batch file creates the tables for the MicroStation GIS example.
  6. REM
  7. echo: 
  8. echo: Usage:   bldgis database_name username password
  9. echo: Example: bldgis gis scott tiger
  10. echo:
  11. goto end
  12.  
  13. :load
  14. echo: Creating gis tables...
  15. isql -d%1 -U%2 -P%3 -n -r -igis.sql
  16.  
  17. :end
  18. echo: Done.