From: | "Sumita Biswas (sbiswas)" <sbiswas(at)cisco(dot)com> |
---|---|
To: | <pgsql-sql(at)postgresql(dot)org> |
Subject: | FW: Function |
Date: | 2004-02-17 14:41:50 |
Message-ID: | 00e601c3f564$2dca6740$2a154d0a@apac.cisco.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
Is there nothing like SET NOCOUNT ON; in plpgsql
Is there any option like SET ANSI_NULLS ON in plpgsql.
Do we append # before the temp table names in plpgsql, like we do for
MSSQL ? In case no how do we create a temp table in a function in plsql?
-----Original Message-----
From: Stephan Szabo [mailto:sszabo(at)megazone(dot)bigpanda(dot)com]
Sent: Monday, February 16, 2004 11:10 PM
To: Sumita Biswas (sbiswas)
Cc: pgsql-sql(at)postgresql(dot)org
Subject: RE: [SQL] Function
On Mon, 16 Feb 2004, Sumita Biswas (sbiswas) wrote:
> Thanks for the answer.
> I have one more issue. How do I test a function that I wrote? I was
> able to create a function called Proc_ConferenceSummary(). In SQL
> Server I used to run it through query analyzer by writing the
> following command: exec Proc_ConferenceSummary
> '12/1/2003','1/23/2004',1,1,0,5001
For functions that return setof or complex types, you can do it as
select * from Proc_ConferenceSummary(...) as alias;
For simple functions you can just use:
select functionname(...);
From | Date | Subject | |
---|---|---|---|
Next Message | Jan Wieck | 2004-02-17 15:08:25 | Re: bytea or blobs? |
Previous Message | Jan Wieck | 2004-02-17 14:41:45 | Re: Unique Constraint with foreign Key |