Re: ERROR: XX000: function 60821C60 returned NULL

From: "Obe, Regina" <robe(dot)dnd(at)cityofboston(dot)gov>
To: <pgsql-bugs(at)postgresql(dot)org>
Subject: Re: ERROR: XX000: function 60821C60 returned NULL
Date: 2007-01-02 17:38:22
Message-ID: 53F9CF533E1AA14EA1F8C5C08ABC08D20152121D@ZDND.DND.boston.cob
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

Correction upgrade to PG 8.2

________________________________

From: pgsql-bugs-owner(at)postgresql(dot)org
[mailto:pgsql-bugs-owner(at)postgresql(dot)org] On Behalf Of Obe, Regina
Sent: Tuesday, January 02, 2007 12:36 PM
To: pgsql-bugs(at)postgresql(dot)org
Subject: [BUGS] ERROR: XX000: function 60821C60 returned NULL

I have an SQL job on SQL Server that dumps data to a table in
PostGreSQL. This job worked fine when it was going against a PG 8.1.3
server, but since my upgrade to PG 8.3, it has been working
intermittently. Mostly not working and erroring out with

ERROR: XX000: function 60821C60 returned NULL

I have other jobs doing similar feeds to other tables, and they still
work fine. So I can't quite figure out what is wrong with this one.
The only difference with this table is that the copy is done hourly
where as the other ones are done daily.

The table being inserted into looks like the below. If I drop the table
and recreate it, the routine starts working again. My SQL Server DTS
job uses the ODBC driver, but I tried a .NET script that uses the npgsql
driver and had the same issues. All fields are inserted into except the
the_point and gid fields. I'm going to reduce the frequency of
uploading and take out the OID to see if that makes a difference.

CREATE TABLE hbasessionsremaining
(
sessioncode character varying(17) NOT NULL,
remainingslots integer,
meetstarttime timestamp without time zone,
meetendtime timestamp without time zone,
number smallint NOT NULL,
date timestamp without time zone,
course character varying(5) NOT NULL,
classcode character varying(8) NOT NULL,
numberwaitlisted integer,
sessiongroup character varying(17),
"location" character varying(50),
locparcelid character(10),
descrip character varying(50),
locationcode character varying(3) NOT NULL,
the_point geometry,
address character varying(500),
gid serial NOT NULL,
CONSTRAINT pk_hbasessionsremaining PRIMARY KEY (sessioncode),
CONSTRAINT udx_hbasessionsremaining_gid UNIQUE (gid)
)
WITHOUT OIDS;
ALTER TABLE hbasessionsremaining OWNER TO robedev;
GRANT ALL ON TABLE hbasessionsremaining TO robedev;
GRANT ALL ON TABLE hbasessionsremaining TO dnddtsadmins WITH GRANT
OPTION;

Thanks,
Regina





________________________________

The substance of this message, including any attachments, may be
confidential, legally
privileged and/or exempt from disclosure pursuant to Massachusetts
law. It is intended
solely for the addressee. If you received this in error, please
contact the sender and
delete the material from any computer.

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Tom Lane 2007-01-02 18:36:00 Re: ERROR: XX000: function 60821C60 returned NULL
Previous Message Obe, Regina 2007-01-02 17:35:43 ERROR: XX000: function 60821C60 returned NULL