Re: Weird SQL Problem

From: Josh Berkus <josh(at)agliodbs(dot)com>
To: pgsql-novice(at)postgresql(dot)org
Cc: operationsengineer1(at)yahoo(dot)com
Subject: Re: Weird SQL Problem
Date: 2005-09-08 00:22:01
Message-ID: 200509071722.01588.josh@agliodbs.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

OE,

> what am i missing here?  why is pgsql trying to find
> the column? rework_notes is varchar and i've done
> inserts for similarnote setups right and left with no
> problem.

At a guess, rework_notes isn't being quoted properly. That's the error
you'd get if you tried to:

SET rework_notes = aaaaaaaaaaaaaaaaa

instead of

SET rework_notes = 'aaaaaaaaaaaaaaaaaa'

--
--Josh

Josh Berkus
Aglio Database Solutions
San Francisco

In response to

Browse pgsql-novice by date

  From Date Subject
Next Message Tom Lane 2005-09-08 00:41:29 Re: MVCC handling of updates
Previous Message operationsengineer1 2005-09-07 23:48:36 Weird SQL Problem