I have two tasks T1 and T2. T1 runs every day at 7:00 hours and it is the predecessor of T2.
I am able to use the task execution history for T1. However, the history of T2 doesn't show up in the results.
Is there a way I can track whether the second task executed or not?
Best, Vijay Prakash
Update:
Here is the query I used to query task execution status:
select *
from table(information_schema.task_history(
result_limit => 10,
task_name=>'T2'));