From: | Stephan Szabo <sszabo(at)megazone(dot)bigpanda(dot)com> |
---|---|
To: | Michael Snodgrass <michael_snodgrass_us(at)yahoo(dot)com> |
Cc: | pgsql-sql(at)postgresql(dot)org |
Subject: | Re: Problem with functions |
Date: | 2004-09-27 00:34:29 |
Message-ID: | 20040926172208.C46859@megazone.bigpanda.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
On Mon, 20 Sep 2004, Michael Snodgrass wrote:
> I been trying to create several different functions
> that mimic several stored procedures in MSSQL.
> The SQL works fine in an interactive SQL, but fails
> miserably when I try to run/execute a function created
> using that same SQL.
> I have been searching web sites and reading what I
> find but I have not anything on functions that speaks
> about the issue I'm having.
>
> I'm hoping maybe you can provide some input on how to
> get these functions to work. I am including one of my
> functions as sample.
>
> Here's the function:
> CREATE OR REPLACE FUNCTION "public"."getappts" (text,
> date, date)
> RETURNS SETOF "public"."calendar" AS'
> SELECT *
> FROM calendar
> WHERE
> event_date BETWEEN $2 AND $3
> AND agent_number IN
> ( SELECT agent_number FROM agents
> WHERE rel30a = $1 OR
> agent_number = $1 )
> ORDER BY event_start_time;
> 'LANGUAGE 'plpgsql' VOLATILE CALLED ON NULL INPUT
> SECURITY INVOKER;
That's not the syntax for plpgsql set returning functions. I think
however, you'd likely be able to make it work by using LANGUAGE 'sql'.
If you want more information, there's the set returning function guide on
techdocs:
http://techdocs.postgresql.org/guides/SetReturningFunctions
and a General Bits article at
http://www.varlena.com/varlena/GeneralBits/26.html
From | Date | Subject | |
---|---|---|---|
Next Message | Devrim GUNDUZ | 2004-09-27 06:31:53 | Re: postgres rpm |
Previous Message | Stephan Szabo | 2004-09-27 00:21:13 | Re: where clause on a left outer join |