Scenario:
I have one backup scheduled that always e-mails me when finished. This has never failed sending hte e-mail.
Later on in the night I have a report that is generated from a Oracle DB linked server. The DTS packaged runs find and sends the e-mail. The package has never failed but every damn time the e-mail is never sent. I always come in and stop/restart SQLAgent and the e-mail is sent.
Use MASTER
EXEC xp_sendmail @recipients = 'address here'
@subject = 'Trak-Star Posting Errors',
@attachments = 'c:\sqltemp\POSTING_ERRORS.xls',
@echo_error = 'TRUE'
EXEC xp_stopmail
this is a Execute SQL task that is using a connection set to Master DB as default. Anything you might recommend taking a look at? All applications are up to date with Service Packs.
I have one backup scheduled that always e-mails me when finished. This has never failed sending hte e-mail.
Later on in the night I have a report that is generated from a Oracle DB linked server. The DTS packaged runs find and sends the e-mail. The package has never failed but every damn time the e-mail is never sent. I always come in and stop/restart SQLAgent and the e-mail is sent.
Use MASTER
EXEC xp_sendmail @recipients = 'address here'
@subject = 'Trak-Star Posting Errors',
@attachments = 'c:\sqltemp\POSTING_ERRORS.xls',
@echo_error = 'TRUE'
EXEC xp_stopmail
this is a Execute SQL task that is using a connection set to Master DB as default. Anything you might recommend taking a look at? All applications are up to date with Service Packs.