タスクの実行履歴がSELECTできる。 データベースを指定しておいて以下実行。
select state, error_message, scheduled_time from table(information_schema.task_history()) WHERE DATABASE_NAME = 'xxxxxxxx' order by scheduled_time DESC LIMIT 200
ワイルドカードしてもいいし、カラムで内容を指定してもいい。
タスクの実行履歴がSELECTできる。 データベースを指定しておいて以下実行。
select state, error_message, scheduled_time from table(information_schema.task_history()) WHERE DATABASE_NAME = 'xxxxxxxx' order by scheduled_time DESC LIMIT 200
ワイルドカードしてもいいし、カラムで内容を指定してもいい。