[성현모] CPXV2 Init

This commit is contained in:
SHM
2024-06-26 10:30:00 +09:00
parent cdf12248c5
commit 5958993b6a
588 changed files with 698420 additions and 0 deletions

View File

@ -0,0 +1,19 @@
@echo Create Alis Start
@echo off
SET SqlCmdOption=-E -C
sqlcmd %SqlCmdOption% -i %~dp0\sqlScripts\Alis_Create.sql
if errorlevel 1 goto errexit
goto end
:errexit
echo DB Patch Fail
goto end
:end
@echo on
@echo Create Alis End
net stop /y MSSQLSERVER
net start /y MSSQLSERVER
pause