17 lines
367 B
Batchfile
17 lines
367 B
Batchfile
@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_DataDB
|
|
|
|
::Default DB
|
|
@echo off
|
|
CALL CreateVPKIDataDB.bat %ServerIP% %ServerPort% %UserID% %Passwd% %DBName%
|
|
CALL CreateVPKIDataDB.bat %ServerIP% %ServerPort% %UserID% %Passwd% %DBName%_DEV |