home *** CD-ROM | disk | FTP | other *** search
- @echo off
- @if not "%3"=="" goto load
-
- REM
- REM --- This batch file creates the tables for the MicroStation GIS example.
- REM
- echo:
- echo: Usage: bldgis database_name username password
- echo: Example: bldgis gis scott tiger
- echo:
- goto end
-
- :load
- echo: Creating gis tables...
- isql -d%1 -U%2 -P%3 -n -r -igis.sql
-
- :end
- echo: Done.