Reputation: 127
I have scheduled windows task scheduler to upload different text files to oracle database. Till date its working fine. But i have an issue that if any uploading was disrupted because of following reasons. 1) Database Machine Shutdown 2) Internet Connectivity Issues 3) Miscellaneous
How i will get this information about failure of task scheduled?
Upvotes: 0
Views: 87
Reputation: 108975
Windows itself (in the event log; a filtered view for each scheduled task is available in the Task Scheduler application) will record if the task failed.
For anything more you'll need to add diagnostic logging to your task's implementation.
Upvotes: 2