Re: where is this problem (trigger)

From: Christoph Haller <ch(at)rodos(dot)fzk(dot)de>
To: tedpet5(at)yahoo(dot)com (Theodore Petrosky)
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: where is this problem (trigger)
Date: 2004-05-14 16:44:39
Message-ID: 200405141444.QAA20955@rodos
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

>
> I fire this trigger whenever my client updates a row
> in the db:
>
> CREATE FUNCTION notify_jobinfo() RETURNS "trigger"
> AS '
> BEGIN
> EXECUTE ''NOTIFY ''||TG_RELNAME||''_''||NEW.jobnumber;
> RETURN NEW;
> END
> '
> LANGUAGE plpgsql;
>
> CREATE TRIGGER notify_jobinfo
> AFTER UPDATE ON jobinfo
> FOR EACH ROW
> EXECUTE PROCEDURE notify_jobinfo();
>
>
> CREATE TABLE jobinfo (
> acode text,
> jobnumber text DEFAULT
> nextval('public.jobinfo_seq'::text),
> creationdate date DEFAULT now(),
> shortdescription text,
> projectcode text,
> holdnumber text,
> insertioninfo text,
> jobtitle text,
> insertiondate text,
> iscomplete boolean DEFAULT false,
> isbilled boolean DEFAULT false,
> CONSTRAINT "$1" CHECK ((jobnumber <> ''::text))
> );
>
> My problem is that I have had to import legacy data
> for the jobnumber column. My client was originally
> using an excel file. they were free to do as they
> pleased and there are jobnumbers like '1041.01'
> '1041.02'.
>
> I can not seem to update these rows because of the dot
> in the jobnumber field. I have found that I can change
> the dot to an underscore but I thought I would ask if
> there is a better solution.
>
> here is the error:
>
> UPDATE jobinfo SET isbilled = false WHERE jobnumber =
> '1162.01';
> ERROR: syntax error at or near ".01" at character 20
> CONTEXT: PL/pgSQL function "notify_jobinfo" line 2 at
> execute statement
>
> Ted
>
>
I can hardly believe the dot in '1162.01' is causing the error.
There must be some other reason. Without showing the trigger
procedure's code it's impossible to tell what's really wrong.

Regards, Christoph

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Eric Anderson Vianet SAO 2004-05-14 17:17:13 view running query
Previous Message Stephan Szabo 2004-05-14 15:06:31 Re: where is this problem (trigger)