This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
SET DTEXEC_PATH="C:\Program Files\Microsoft SQL Server\110\DTS\Binn\dtexec.exe" | |
%DTEXEC_PATH% /FILE batch_success.dtsx | |
IF %ERRORLEVEL% NEQ 0 GOTO STOP_JOB | |
%DTEXEC_PATH% /FILE batch_fail.dtsx | |
IF %ERRORLEVEL% NEQ 0 GOTO STOP_JOB | |
%DTEXEC_PATH% /FILE batch_success.dtsx | |
IF %ERRORLEVEL% NEQ 0 GOTO STOP_JOB |