@echo off ::log IF NOT EXIST .\logs mkdir logs ::서버연결정보 SET ServerIP=127.0.0.1 SET ServerPort=1433 ::DB 정보 SET UserID=VPKI SET Passwd=Kefico!@34 SET DBName=VPKI_AccountDB ::Update script 정보 SET Dacpac=.\sqlScripts\dacpac\VPKI.AccountDB.dacpac SET OUTPUT=VPKI.AccountDB_Update.sql @echo off ::generate update script CALL UpdateScriptGenerate.bat %ServerIP% %ServerPort% %UserID% %Passwd% %DBName% %Dacpac% %OUTPUT% ::Default DB CALL UpdateVPKIAccountDB.bat %ServerIP% %ServerPort% %UserID% %Passwd% VPKI_AccountDB CALL UpdateVPKIAccountDB.bat %ServerIP% %ServerPort% %UserID% %Passwd% VPKI_AccountDB_DEV