by shigemk2

当面は技術的なことしか書かない

TASK_HISTORY

タスクの実行履歴がSELECTできる。 データベースを指定しておいて以下実行。

select state, error_message, scheduled_time
  from table(information_schema.task_history())
  WHERE DATABASE_NAME = 'xxxxxxxx'
  order by scheduled_time DESC
  LIMIT 200

ワイルドカードしてもいいし、カラムで内容を指定してもいい。

docs.snowflake.com