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.
Thanks
Andre
http://www.postgresql.org/docs/current/static/infoschema-sequences.html
But
SELECT *
FROM sequence_name
gives more detailed information
Thomas
So I can look into information_schema.sequences for all the names
and then I can query every sequence name for details. Nice.
Thanks a lot
Andre