public inbox for [email protected]
help / color / mirror / Atom feedFrom: Nisarg Patel <[email protected]>
To: Tom Lane <[email protected]>
Cc: Campbell, Lance <[email protected]>
Cc: [email protected]
Subject: Re: How to find all current sequence IDs
Date: Wed, 21 Feb 2024 18:17:15 -0500
Message-ID: <CAA=RfSPoPw0ERRGEQTVGYvAzJjES42At0bhxCNvW1x_LnAu0nw@mail.gmail.com> (raw)
In-Reply-To: <[email protected]>
References: <SJ0PR11MB562974ADFAF0F0CFB72A8B6DDE572@SJ0PR11MB5629.namprd11.prod.outlook.com>
<[email protected]>
This has worked for me in the past:
select schemaname, sequencename, last_value
from pg_sequences;
Thank you,
Nisarg
On Wed, Feb 21, 2024, 5:14 PM Tom Lane <[email protected]> wrote:
> "Campbell, Lance" <[email protected]> writes:
> > Is there a way to get a list of all sequences, the schema it is used in,
> and the current sequence number in use?
>
> Try something like
>
> select relname, relnamespace::regnamespace, pg_sequence_last_value(oid)
> from pg_class where relkind = 'S';
>
> regards, tom lane
>
>
>
view thread (4+ messages) latest in thread
reply
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Reply to all the recipients using the --to and --cc options:
reply via email
To: [email protected]
Cc: [email protected], [email protected], [email protected], [email protected]
Subject: Re: How to find all current sequence IDs
In-Reply-To: <CAA=RfSPoPw0ERRGEQTVGYvAzJjES42At0bhxCNvW1x_LnAu0nw@mail.gmail.com>
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox