Re: independent sequence for each month

From: Bruno Wolff III <bruno(at)wolff(dot)to>
To: Tomasz Myrta <jasiek(at)klaster(dot)net>
Cc: PGSQL-SQL <pgsql-sql(at)postgresql(dot)org>
Subject: Re: independent sequence for each month
Date: 2003-08-14 14:12:00
Message-ID: 20030814141200.GG27870@wolff.to
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Thu, Aug 14, 2003 at 08:18:46 +0200,
Tomasz Myrta <jasiek(at)klaster(dot)net> wrote:
> Hi
> I have to generate unique numbers starting from 1 every month. I can't
> reset sequence on last day of month, because sometimes I have to insert
> some future or past values. I thought I can create independent sequence
> for each month, but it doesn't sound elegant.

If you are restarting from 1 each month, I suspect that you also want
consecutive nmumbers without any gaps. If so, then using sequences
may not work for you.

If your server isn't heavily loaded you can lock the table and select
the highest number used in the current month (using coalesce to change
null to 0) and add 1 to it in your insert statement.

Another option is if the numbers only appear on reports and are not used
in the database, is to have the application generate them. If the reports
are just listings of the complete list of monthly events this will probably
be easy.

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Slawek Jarosz 2003-08-14 14:40:02 Optional join
Previous Message Jomon Skariah 2003-08-14 13:46:53 Porting from PL/SQL to PLPGSQL