I have a stored procedure that does raises an error if data does not match up using the following:
RAISERROR ( 'ERROR: boo',
1, -1 )
This works fine. However, when i execute the proc from a SQL Job, the job shows success and 0 errors even if this error is encountered. Does anyone know how I can make the job show this error?