Re: Sequences - Mailing list pgsql-sql

From Chris Browne
Subject Re: Sequences
Date
Msg-id 871vox4fgy.fsf@dba2.int.libertyrms.com
Whole thread Raw
In response to Sequences  ("Hunter, Ray" <rhunter@enterasys.com>)
Responses Re: Sequences
Re: Sequences
List pgsql-sql
Andre Rothe <arothe@phosco.info> writes:
> Where are stored the sequence information? How I can query the
> properties of a sequence like increment, max/min value, cache?
> I'm looking for a table like user_sequences in Oracle, where I
> can query all of my sequences.

cbbrowne=# create sequence foo;
CREATE SEQUENCE
cbbrowne=# select * from foo;sequence_name | last_value | increment_by |      max_value      | min_value | cache_value
|log_cnt | is_cycled | is_called
 

---------------+------------+--------------+---------------------+-----------+-------------+---------+-----------+-----------foo
         |          1 |            1 | 9223372036854775807 |         1 |           1 |       1 | f         | f
 
(1 row)

Each sequence is effectively a relation.
-- 
output = ("cbbrowne" "@" "cbbrowne.com")
http://www3.sympatico.ca/cbbrowne/wp.html
Where do you want to Tell Microsoft To Go Today?


pgsql-sql by date:

Previous
From: Jasmin Dizdarevic
Date:
Subject: Re: Create custom aggregate function and custom sfunc
Next
From: Jasmin Dizdarevic
Date:
Subject: Re: Sequences