[성현모] DBPatch 간소화, 경로 변경

This commit is contained in:
SHM
2025-08-04 10:55:49 +09:00
parent bb9ed413a7
commit 1db24651ca
29 changed files with 1318 additions and 8 deletions

View File

@ -0,0 +1,19 @@
@echo off
SET ServerIP=%1
SET ServerPort=%2
SET UserID=%3
SET Passwd=%4
SET DBName=%5
SET SqlCmdOption=-U %UserID% -P %Passwd% -S %ServerIP%,%ServerPort% -d %DBName% -o ..\logs\%DBName%.log
SET DatabaseName=%DBName%
sqlcmd %SqlCmdOption% -i .\SystemX.DB.AccountDB_Update.sql
if errorlevel 1 goto errexit
goto end
:errexit
echo DB Patch Fail
goto end
:end
@echo on