SYS_MV_REFRESH_HISTORY - Amazon Redshift

SYS_MV_REFRESH_HISTORY

結果には、すべてのマテリアライズドビューの更新履歴に関する情報が含まれます。結果には、手動や自動などの更新タイプ、および最新の更新のステータスが含まれます。

SYS_MV_REFRESH_HISTORY はすべてのユーザーに表示されます。スーパーユーザーはすべての行を表示できますが、通常のユーザーは自分のデータのみを表示できます。詳細については、「システムテーブルとビューのデータの可視性」を参照してください。

テーブルの列

列名 データ型 説明
user_id integer 更新を送信したユーザーの識別子。
session_id integer マテリアライズドビューの更新を実行するプロセスのプロセス識別子。
transaction_id bigint トランザクション識別子。
database_name char(128) マテリアライズドビューを含むデータベース。
schema_name char(128) マテリアライズドビューのスキーマ。
mv_id bigint マテリアライズドビューのオブジェクト ID。
mv_name char(128) マテリアライズドビューの名前。
refresh_type char(32) 更新のタイプ (手動または自動など)。
status text 更新のステータス。ステータスの詳細については、SVL_MV_REFRESH_STATUS のステータス列を参照してください。
start_time timestamp 更新の開始時間。
end_time timestamp 更新の終了時間。
duration bigint マテリアライズドビューの更新にかかった時間 (マイクロ秒単位)。

サンプルクエリ

次のクエリは、マテリアライズドビューの更新履歴を表示します。

SELECT user_id, session_id, transaction_id, database_name, schema_name, mv_id, mv_name, refresh_type, status, start_time, end_time, duration from sys_mv_refresh_history;

このクエリは、次のサンプル出力を返します。

user_id | session_id | transaction_id | database_name | schema_name | mv_id | mv_name | refresh_type | status | start_time | end_time | duration ---------+------------+----------------+---------------+----------------------------+--------+--------------------+----------------+-------------------------------------------------+----------------------------+----------------------------+----------- 1 | 1073815659 | 15066 | dev | test_stl_mv_refresh_schema | 203762 | mv_incremental | Manual | MV was already updated | 2023-10-26 15:59:20.952179 | 2023-10-26 15:59:20.952866 | 687 1 | 1073815659 | 15068 | dev | test_stl_mv_refresh_schema | 203771 | mv_nonincremental | Manual | MV was already updated | 2023-10-26 15:59:21.008049 | 2023-10-26 15:59:21.008658 | 609 1 | 1073815659 | 15070 | dev | test_stl_mv_refresh_schema | 203779 | mv_refresh_error | Manual | MV was already updated | 2023-10-26 15:59:21.064252 | 2023-10-26 15:59:21.064885 | 633 1 | 1073815659 | 15074 | dev | test_stl_mv_refresh_schema | 203762 | mv_incremental | Manual | Refresh successfully updated MV incrementally | 2023-10-26 15:59:29.693329 | 2023-10-26 15:59:43.482842 | 13789513 1 | 1073815659 | 15076 | dev | test_stl_mv_refresh_schema | 203771 | mv_nonincremental | Manual | Refresh successfully recomputed MV from scratch | 2023-10-26 15:59:43.550184 | 2023-10-26 15:59:47.880833 | 4330649 1 | 1073815659 | 15078 | dev | test_stl_mv_refresh_schema | 203779 | mv_refresh_error | Manual | Refresh failed due to an internal error | 2023-10-26 15:59:47.949052 | 2023-10-26 15:59:52.494681 | 4545629 (6 rows)