dbinstall.cmd 377 B

12345678910
  1. REM ** Creates BO database in localDB instance **
  2. REM ** If BO database exists skip if -force argument no defined **
  3. REM ** If BO database exists delete database and creates new one if -force argument efined **
  4. REM ** Usage: dbinstall [-force] **
  5. @echo off
  6. call setenv.cmd
  7. set oldcd=%cd%
  8. cd %BOPath%
  9. %BOConsole% dbinstall -srv:(localdb)\mssqllocaldb -db:BO -isec %1%
  10. cd %oldcd%