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

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