home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 February / CHIP_2_98.iso / software / pelne / optionp / msmqocm.cab / PATCH408.CMD < prev    next >
OS/2 REXX Batch file  |  1997-10-06  |  616b  |  23 lines

  1. @echo off
  2. rem -----------------------------------------------------
  3. rem
  4. rem Patch fix when SQL is out of version
  5. rem
  6. rem   Whenever SQL displays error 941 - meaning wrong
  7. rem   version in MQIS database, run this cmd file.
  8. rem
  9. rem   Make sure the SQL binaries are on the path
  10. rem   (usually C:\MSSQL\BINN).
  11. rem
  12. rem
  13. rem   Notice that this batch file stops and restarts
  14. rem   the Microsoft Message Queue service. This can
  15. rem   leave open MSMQ applications in unstable stage.
  16. rem
  17. rem -----------------------------------------------------
  18.  
  19. @net stop msmq
  20. @isql -E -i patch408.sql
  21. @net start msmq
  22.  
  23.