From: | Richard Broersma Jr <rabroersma(at)yahoo(dot)com> |
---|---|
To: | Patrick Ng <patrick(dot)ng(at)zuji(dot)com>, pgsql-novice(at)postgresql(dot)org |
Subject: | Re: RE : How do I compile/test a PL/SQL in Postgresql |
Date: | 2006-07-17 12:17:07 |
Message-ID: | 20060717121707.63585.qmail@web31805.mail.mud.yahoo.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-novice |
> I am a novice to PostgreSQL (although I know ORACLE's PL/SQL very well)
> I have written a Stored Function in PostgreSQL but cannot figure out how
> to compile it or run it in PostgreSQL. In ORACLE, one would have to
I don't know if you've seen this link, but I should be useful.
http://www.postgresql.org/docs/8.1/interactive/plpgsql-porting.html
> do this at SQL*PLUS prompt : @<file-path\file_name to compile the stored
> function into ORACLE DB.
> In PostgreSQL, how do I do that?
I would do:
psql-> \i <file-path>\function.sql
> In ORACLE, one would have to write a PL/SQL to test the stored function
> (and use DBMS_OUTPUT.PUT_LINE) to get the stored function to write to
> stdout.
I believe that:
psql-> \o filename
or from the command line you can get query results returned to standard out. And then you could
"pipe" the result to whatever you wanted.
$ psql -u <user> -d <mydb> -c "select * from test" | grep -e "hello world" > hello.txt
> In PostgreSQL, how do I test the stored function? I noticed none of the
> documentation or books seemed to mention this simple point.
Well, I would run it to see if it was syntactically correct.
Then I would check to see if the results were as I expected.
Next I would execute the function using "explain analyze" to see if there are any preformance
issues that need to be resolved.
From | Date | Subject | |
---|---|---|---|
Next Message | Slavisa Garic | 2006-07-17 16:07:25 | FROM clause in UPDATE |
Previous Message | Christoph Della Valle | 2006-07-17 10:13:27 | Re: RE : How do I compile/test a PL/SQL in Postgresql |