3
votes
3answers
272 views
what are the advantages of using plpgsql in postgresql
Besides the syntactic sugar and expressiveness power what are the differences in runtime efficiency. I mean, plpgsql can be faster than, lets say plpythonu or pljava? Or are they a …
0
votes
2answers
105 views
Better way to write PL/pgSQL?
Is there a decent IDE-like tool for writing and debugging PL/pgSQL functions, e.g. for writing stored procedures?
I find it an exercise in frustration using pgAdmin III, because t …
0
votes
4answers
198 views
Can I have a postgres plpgsql function return variable-column records?
I want to create a postgres function that builds the set of columns it
returns on-the-fly; in short, it should take in a list of keys, build
one column per-key, and return a record …
0
votes
3answers
38 views
PostgreSQL triggers and exceptions
I'm trying to get my first ever trigger and function to work, but how I throw exceptions and return data right way?
PostgreSQL 8.4.1
CREATE TABLE "SHIFTS" (
id integer NOT NU …
0
votes
2answers
36 views
Checking timestamps in PL/pgSQL
If I have a function in PL/pgSQL that takes in a timestamp, what is the best way to identify whether that date is less than 12 months in the past?
e.g.
CREATE FUNCTION do_somethi …
0
votes
1answer
57 views
Refcursor in pl/pgsql
I have a function written in pl/pgsql which works in the same way as the one described below:
CREATE FUNCTION reffunc(text) RETURNS refcursor AS '
BEGIN
OPEN $1 FOR SELECT col …
0
votes
1answer
25 views
How can I re-use a function name as an out-parameter in PostgreSQL 8?
I have a function that has a very useful name: has_useful_state(param).
I have a second function that will be returning a SETOF RECORDs of these results:
CREATE OR REPLACE FUNCT …
1
vote
4answers
204 views
postgres update a date field when a boolean field is set to true
For the sake of the example, consider a table
create table foo (
contents text NOT NULL,
is_active boolean NOT NULL DEFAULT false,
dt_active date
)
I insert a record:
ins …
0
votes
2answers
59 views
How to check, if a value is an integer with plpgsql?
i am using this function in a trigger:
CREATE OR REPLACE FUNCTION xx() RETURNS trigger AS $xx$
BEGIN
INSERT INTO my_log (x, y, z) VALUES (NEW.x, NEW.y, current_sett …
2
votes
4answers
1k views
Session based global variable in Postgresql stored procedure?
In Oracle's PL/SQL I can create a session based global variable with the package definition. With Postgresql's PLpg/SQL, it doesn't seem possible since there are no packages, only …
2
votes
3answers
109 views
Good resources for learning PL/pgSQL?
I've been looking around the net trying to find good resources for learning PostgreSQL's procedural programming language, PL/pgSQL.
So far the only thing I've managed to dig up is …
0
votes
2answers
315 views
How to delete table *or* view from PostgreSQL database?
Hello.
I have a name of table or view in PostgreSQL database and need to delete in in single pgSQL command. How can i afford it?
I was able to select form system table to find ou …
0
votes
3answers
57 views
pgsql time diffrence?
How to write a query to find the time difference ?
time format is like this
2009-08-12 02:59:59
i want to compare
this time with
2009-08-12 02:59:10
how to check these two
…
0
votes
2answers
59 views
How do I get the primary key(s) of a table from Postgres via plpgsql?
Given a table name, how do I extract a list of primary key columns and their datatypes from a plpgsql function?
4
votes
5answers
200 views
How do I do large non-blocking updates in PostgreSQL?
I want to do a large update on a table in PostgreSQL, but I don't need the transactional integrity to be maintained across the entire operation, because I know that the column I'm …
