Re: data dependent sequences?

Поиск
Список
Период
Сортировка
От Stuart
Тема Re: data dependent sequences?
Дата
Msg-id f7iggu$1nb$1@sea.gmane.org
обсуждение исходный текст
Ответ на data dependent sequences?  ("Stuart McGraw" <smcg2297@frii.com>)
Ответы Re: data dependent sequences?  (Andrew Sullivan <ajs@crankycanuck.ca>)
Список pgsql-sql
"Ragnar" <gnari@hive.is> wrote in message news:1184515497.5778.141.camel@localhost.localdomain...
> On sun, 2007-07-15 at 09:28 -0600, Stuart McGraw wrote:
> > Advice requested :-)  I have a table like:
> > 
> > CREATE TABLE items (
> >     id INT,
> >     typ INT    ...
> >     PRIMAY KEY (seq,typ));
> > 
> > I would like 'id' to be like a SERIAL except that I
> > want independent sequences for each value of 'typ'.
> 
> what possible advantage could there be to that?
> 
> if you need gapless series, then sequences (and serial)
> are not adequate anyways.
> 
> just use one sequence.

I am not looking for gapless sequences.  The reason I
want to do this is the "typ" column is actually an indicator
of the source of the rest of the infomation in the row.
The "rules" for assigning the id number vary depending
on the source -- in some cases they start at 1 and increment
by one, in other cases they start at, say, 1000000 and 
increment by 10.  There are a lot existing data using these 
rules and I cannot change that.  I can of course have the 
application do the assignments, but in general eould prefer 
to push this down into the database if posible.




В списке pgsql-sql по дате отправления:

Предыдущее
От: Dani Castaños
Дата:
Сообщение: Re: Having the sum of two queries
Следующее
От: "Stuart"
Дата:
Сообщение: Re: data dependent sequences?