If you need to make a job fail via t-sql, simply use the throw statement:
THROW 51000, 'Failure', 1;
In fact, throwing ‘Failure’ from any program (powershell included) will cause the job to fail:
if($ret -eq 1)
{
throw "Failure"
}
If you need to make a job fail via t-sql, simply use the throw statement:
THROW 51000, 'Failure', 1;
In fact, throwing ‘Failure’ from any program (powershell included) will cause the job to fail:
if($ret -eq 1)
{
throw "Failure"
}
Leave a comment