はじめに
システムテーブルは、Verticaのクラスタの状態や、テーブル、プロジェクション、ユーザ等の詳細な情報を確認することができます。各システムテーブルにどのような情報が含まれているか確認をするために、よくカラムの一覧を出力することがありますが、この時にスキーマ名(v_catalogもしくは v_monitor)で指定をする必要があります。
スキーマ名の指定を忘れてしまうことが多いので、カラムの一覧を確認する時は、ご注意ください。
実行結果
以下に実行結果をご紹介します。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
//ユーザー作成のテーブルを確認する場合 dbadmin=> \d t_1 List of Fields by Tables Schema | Table | Column | Type | Size | Default | Not Null | Primary Key | Foreign Key --------+-------+--------+-------------+------+---------+----------+-------------+------------- public | t_1 | col1 | int | 8 | | f | f | public | t_1 | col2 | varchar(10) | 10 | | f | f | (2 rows) //システムテーブルの一覧を出力 dbadmin=> \dS List of tables Schema | Name | Kind | Description | Comment -----------+---------------------------------------+--------+------------------------------------------------------------------------------------------------+--------- v_catalog | access_policy | system | Access Policy information | v_catalog | all_tables | system | A complete listing of all tables and views | : v_monitor | user_sessions | system | User session history | v_monitor | wos_container_storage | system | Storage information on WOS allocator | (192 rows) //v_catalogスキーマを指定しない場合 dbadmin=> \d access_policy; Did not find any relation. //v_catalogスキーマを指定した場合 dbadmin=> \d v_catalog.access_policy; List of Fields by Tables Schema | Table | Column | Type | Size | Default | Not Null | Primary Key | Foreign Key -----------+---------------+-------------------+---------------+------+---------+----------+-------------+------------- v_catalog | access_policy | access_policy_oid | int | 8 | | f | f | v_catalog | access_policy | column_name | varchar(128) | 128 | | f | f | v_catalog | access_policy | epoch | int | 8 | | f | f | v_catalog | access_policy | expression | varchar(8192) | 8192 | | f | f | v_catalog | access_policy | is_policy_enabled | varchar(128) | 128 | | f | f | v_catalog | access_policy | policy_type | varchar(128) | 128 | | f | f | v_catalog | access_policy | table_name | varchar(128) | 128 | | f | f | (7 rows) |
参考情報
Vertica System Tableshttps://www.vertica.com/docs/9.2.x/HTML/Content/Authoring/SQLReferenceManual/SystemTables/VerticaSystemTables.htm
検証バージョンについて
この記事の内容はVertica 9.2で確認しています。- 投稿タグ
- システムテーブル, カラムの一覧, 列の一覧, システムテーブルのカラム一覧, システムテーブルの列一覧, システムテーブルの情報