pg_sequences
#
The view <structname>pg_sequences</structname> provides access to
useful information about each sequence in the database.
pg_sequences
ビューはデータベース内の各シーケンスについての有用な情報へのアクセスを提供します。
表52.23 pg_sequences
の列
Column Type 列 型 Description 説明 |
---|
Name of schema containing sequence シーケンスがあるスキーマの名前 |
Name of sequence シーケンスの名前 |
Name of sequence's owner シーケンスの所有者の名前 |
Data type of the sequence シーケンスのデータ型 |
Start value of the sequence シーケンスの開始値 |
Minimum value of the sequence シーケンスの最小値 |
Maximum value of the sequence シーケンスの最大値 |
Increment value of the sequence シーケンスの増分値 |
Whether the sequence cycles シーケンスが周回するかどうか |
Cache size of the sequence シーケンスのキャッシュサイズ |
The last sequence value written to disk. If caching is used, this value can be greater than the last value handed out from the sequence. ディスクに書き込まれた最後のシーケンス値。 キャッシュが使用されている場合、この値はシーケンスから最後に取り出された値より大きくなることがあります。 |
The <structfield>last_value</structfield> column will read as null if any of
the following are true:
last_value
列は以下のいずれかがtrueである場合、NULLとして読み込みます。
The sequence has not been read from yet. シーケンスからまだ読み取られていない。
The current user does not have <literal>USAGE</literal> or
<literal>SELECT</literal> privilege on the sequence.
現在のユーザがシーケンスについてUSAGE
あるいはSELECT
権限を持っていない。
The sequence is unlogged and the server is a standby. ログを取らないシーケンスで、サーバはスタンバイ。