Files
SystemX.Web/Projects/VPKI/VPKI.DB/DBPatch/_CreateAccount_관리자권한으로실행.bat
2025-04-24 15:42:47 +09:00

19 lines
310 B
Batchfile

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