Re: [ADMIN] How to set the global OID counter? COPY WITH OIDS does

Lists: pgsql-adminpgsql-bugspgsql-general
From: Dirk Lutzebäck <lutzeb(at)aeccom(dot)com>
To: pgsql-admin(at)postgresql(dot)org, pgsql-general(at)postgresql(dot)org, pgsql-bugs(at)postgresql(dot)org
Cc: tgl(at)sss(dot)pgh(dot)pa(dot)us
Subject: How to set the global OID counter? COPY WITH OIDS does not set global OID counter?
Date: 2006-06-09 13:25:55
Message-ID: 448976E3.50209@aeccom.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-admin pgsql-bugs pgsql-general

Hi,

how can one set the global OID counter in 8.1.X? We think it would work
in 8.0.X using the COPY WITH OIDS command but this does not work in
8.1.X anymore.

We have the problem that we made a dump using 'pg_dump -o' in 8.0.X,
created a new database in 8.1.X and read back in but the global OID
counter stayed at 40.000 so OIDs will be allocated again!

Thanks for help,

Dirk


From: Alvaro Herrera <alvherre(at)commandprompt(dot)com>
To: Dirk Lutzebäck <lutzeb(at)aeccom(dot)com>
Cc: pgsql-admin(at)postgresql(dot)org, pgsql-general(at)postgresql(dot)org, pgsql-bugs(at)postgresql(dot)org, tgl(at)sss(dot)pgh(dot)pa(dot)us
Subject: Re: How to set the global OID counter? COPY WITH OIDS does not set global OID counter?
Date: 2006-06-09 14:00:15
Message-ID: 20060609140015.GF19659@surnet.cl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-admin pgsql-bugs pgsql-general

Dirk Lutzebäck wrote:
> Hi,
>
> how can one set the global OID counter in 8.1.X? We think it would work
> in 8.0.X using the COPY WITH OIDS command but this does not work in
> 8.1.X anymore.

pg_resetxlog -o
(Postmaster stopped of course)

--
Alvaro Herrera http://www.CommandPrompt.com/
PostgreSQL Replication, Consulting, Custom Development, 24x7 support


From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Alvaro Herrera <alvherre(at)commandprompt(dot)com>
Cc: Dirk Lutzebäck <lutzeb(at)aeccom(dot)com>, pgsql-admin(at)postgresql(dot)org, pgsql-general(at)postgresql(dot)org, pgsql-bugs(at)postgresql(dot)org
Subject: Re: How to set the global OID counter? COPY WITH OIDS does not set global OID counter?
Date: 2006-06-09 14:26:39
Message-ID: 9780.1149863199@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-admin pgsql-bugs pgsql-general

Alvaro Herrera <alvherre(at)commandprompt(dot)com> writes:
> Dirk Lutzebck wrote:
>> how can one set the global OID counter in 8.1.X? We think it would work
>> in 8.0.X using the COPY WITH OIDS command but this does not work in
>> 8.1.X anymore.

> pg_resetxlog -o
> (Postmaster stopped of course)

Possibly more to the point: why do you think you need to mess with the
counter? 8.1 is smart enough not to assign conflicting OIDs to large
objects.

regards, tom lane


From: Dirk Lutzebäck <lutzeb(at)aeccom(dot)com>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Alvaro Herrera <alvherre(at)commandprompt(dot)com>, pgsql-admin(at)postgresql(dot)org, pgsql-general(at)postgresql(dot)org, pgsql-bugs(at)postgresql(dot)org, Sven Geisler <sgeisler(at)aeccom(dot)com>, pavel rabaev <pavel(at)aeccom(dot)com>
Subject: Re: How to set the global OID counter? COPY WITH OIDS does
Date: 2006-06-09 14:41:01
Message-ID: 4489887D.6080505@aeccom.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-admin pgsql-bugs pgsql-general

This is not a large object. We are seeing rows with duplicate oids
because the OID counter is not changed after the dump (exported with
--oids) is being loaded.
How does 8.1 prevent to allocate duplicate OIDs?

Regards,

Dirk

Tom Lane wrote:
> Alvaro Herrera <alvherre(at)commandprompt(dot)com> writes:
>
>> Dirk Lutzebäck wrote:
>>
>>> how can one set the global OID counter in 8.1.X? We think it would work
>>> in 8.0.X using the COPY WITH OIDS command but this does not work in
>>> 8.1.X anymore.
>>>
>
>
>> pg_resetxlog -o
>> (Postmaster stopped of course)
>>
>
> Possibly more to the point: why do you think you need to mess with the
> counter? 8.1 is smart enough not to assign conflicting OIDs to large
> objects.
>
> regards, tom lane
>


From: "Colin Freas" <colinfreas(at)gmail(dot)com>
To: pgsql-admin(at)postgresql(dot)org
Subject: Re: How to set the global OID counter? COPY WITH OIDS does
Date: 2006-06-09 14:49:49
Message-ID: b27f65f70606090749x31011778m722dccbf11463748@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-admin pgsql-bugs pgsql-general

this is an important enough question that no one who asks it has to provide
an answer as to why they're doing it.

i can imagine many situations where this would be useful, not the least of
which is reliability testing. and ESPECIALLY since OID's apparently roll
over at 2^32. what happens if you have more than 4 billion rows in the
database?

that's totally unrelated to setting the oid counter though. come on. give
it up! how do you do it?

colin

On 6/9/06, Dirk Lutzebäck <lutzeb(at)aeccom(dot)com> wrote:
>
> This is not a large object. We are seeing rows with duplicate oids
> because the OID counter is not changed after the dump (exported with --oids)
> is being loaded.
> How does 8.1 prevent to allocate duplicate OIDs?
>
> Regards,
>
> Dirk
>
> Tom Lane wrote:
>
> Alvaro Herrera <alvherre(at)commandprompt(dot)com> <alvherre(at)commandprompt(dot)com> writes:
>
> Dirk Lutzebäck wrote:
>
> how can one set the global OID counter in 8.1.X? We think it would work
> in 8.0.X using the COPY WITH OIDS command but this does not work in
> 8.1.X anymore.
>
> pg_resetxlog -o
> (Postmaster stopped of course)
>
> Possibly more to the point: why do you think you need to mess with the
> counter? 8.1 is smart enough not to assign conflicting OIDs to large
> objects.
>
> regards, tom lane
>
>
>


From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Dirk Lutzebäck <lutzeb(at)aeccom(dot)com>
Cc: Alvaro Herrera <alvherre(at)commandprompt(dot)com>, pgsql-admin(at)postgresql(dot)org, pgsql-general(at)postgresql(dot)org, pgsql-bugs(at)postgresql(dot)org, Sven Geisler <sgeisler(at)aeccom(dot)com>, pavel rabaev <pavel(at)aeccom(dot)com>
Subject: Re: How to set the global OID counter? COPY WITH OIDS does
Date: 2006-06-09 15:18:23
Message-ID: 10905.1149866303@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-admin pgsql-bugs pgsql-general

=?ISO-8859-1?Q?Dirk_Lutzeb=E4ck?= <lutzeb(at)aeccom(dot)com> writes:
> This is not a large object. We are seeing rows with duplicate oids
> because the OID counter is not changed after the dump (exported with
> --oids) is being loaded.
> How does 8.1 prevent to allocate duplicate OIDs?

If there's a unique index on the OID column then 8.1 will not allocate
duplicate OIDs. If there's not such a unique index, you had no
guarantee of no-duplicates before 8.1 either.

regards, tom lane


From: Dirk Lutzebäck <lutzeb(at)aeccom(dot)com>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Alvaro Herrera <alvherre(at)commandprompt(dot)com>, pgsql-admin(at)postgresql(dot)org, pgsql-general(at)postgresql(dot)org, pgsql-bugs(at)postgresql(dot)org, Sven Geisler <sgeisler(at)aeccom(dot)com>, pavel rabaev <pavel(at)aeccom(dot)com>
Subject: Re: How to set the global OID counter? COPY WITH OIDS does
Date: 2006-06-09 15:27:47
Message-ID: 44899373.6090801@aeccom.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-admin pgsql-bugs pgsql-general

True.

Dirk

Tom Lane wrote:
> =?ISO-8859-1?Q?Dirk_Lutzeb=E4ck?= <lutzeb(at)aeccom(dot)com> writes:
>
>> This is not a large object. We are seeing rows with duplicate oids
>> because the OID counter is not changed after the dump (exported with
>> --oids) is being loaded.
>> How does 8.1 prevent to allocate duplicate OIDs?
>>
>
> If there's a unique index on the OID column then 8.1 will not allocate
> duplicate OIDs. If there's not such a unique index, you had no
> guarantee of no-duplicates before 8.1 either.
>
> regards, tom lane
>

--
/This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they are
addressed. If you are not the intended recipient, you should not copy
it, re-transmit it, use it or disclose its contents, but should return
it to the sender immediately and delete your copy from your system.
Thank you for your cooperation./

*Dirk Lutzebäck* <lutzeb(at)aeccom(dot)com> Tel +49.30.5362.1635 Fax .1638
CTO AEC/communications GmbH <http://www.aeccom.com>, Berlin, Germany


From: "Jim C(dot) Nasby" <jnasby(at)pervasive(dot)com>
To: Dirk Lutzeb?ck <lutzeb(at)aeccom(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: [ADMIN] How to set the global OID counter? COPY WITH OIDS does
Date: 2006-06-09 17:42:34
Message-ID: 20060609174234.GB45331@pervasive.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-admin pgsql-bugs pgsql-general

In the future, please don't send the same email to a bunch of pgsql
lists; one is almost always sufficient. (In this case, -admin OR
-general woulud have been best).

On Fri, Jun 09, 2006 at 05:27:47PM +0200, Dirk Lutzeb?ck wrote:
> True.
>
> Dirk
>
> Tom Lane wrote:
> >=?ISO-8859-1?Q?Dirk_Lutzeb=E4ck?= <lutzeb(at)aeccom(dot)com> writes:
> >
> >>This is not a large object. We are seeing rows with duplicate oids
> >>because the OID counter is not changed after the dump (exported with
> >>--oids) is being loaded.
> >>How does 8.1 prevent to allocate duplicate OIDs?
> >>
> >
> >If there's a unique index on the OID column then 8.1 will not allocate
> >duplicate OIDs. If there's not such a unique index, you had no
> >guarantee of no-duplicates before 8.1 either.
> >
> > regards, tom lane
> >
>
> --
> /This email and any files transmitted with it are confidential and
> intended solely for the use of the individual or entity to whom they are
> addressed. If you are not the intended recipient, you should not copy
> it, re-transmit it, use it or disclose its contents, but should return
> it to the sender immediately and delete your copy from your system.
> Thank you for your cooperation./
>
> *Dirk Lutzeb?ck* <lutzeb(at)aeccom(dot)com> Tel +49.30.5362.1635 Fax .1638
> CTO AEC/communications GmbH <http://www.aeccom.com>, Berlin, Germany
>

--
Jim C. Nasby, Sr. Engineering Consultant jnasby(at)pervasive(dot)com
Pervasive Software http://pervasive.com work: 512-231-6117
vcard: http://jim.nasby.net/pervasive.vcf cell: 512-569-9461