Tagged Questions
PL/pgSQL is the default procedural language for the PostgreSQL database system. Questions about PL/pgSQL should probably be tagged "PostgreSQL" as well.
49
votes
1answer
2k views
Debug PostgreSQL function using pgAdmin
I refer this to enable the debugger in the PostgreSQL server in order to debugging the plpgsql function by stepping through the codes using the pgadmin.
I have already set shared_preload_libraries ...
11
votes
6answers
217 views
Embed python/dsl for scripting in an PHP web application
I'm developing an web based application written in PHP5, which basically is an UI on top of a database. To give users a more flexible tool I want to embed a scripting language, so they can do more ...
10
votes
3answers
236 views
The forgotten assignment operator “=” and the commonplace “:=”
The documentation for PL/pgSQL says, that declaration and assignment to variables is done with :=.
But a simple, shorter and more modern (see footnote) = seems to work as expected:
CREATE OR ...
9
votes
6answers
986 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 changing is not ...
9
votes
4answers
17k views
PostgreSQL return setof record ( virtual table )
i need a postgres function to return a virtual table ( like in oracle ) with custom content. The table would have 3 columns and an unknown amounts of rows..
i just couldn't find the correct syntax on ...
7
votes
2answers
827 views
ERROR: must be owner of language plpgsql
I'm using PostgreSQL v9.0.1 with Rails (and it's deps) @ v2.3.8, owing to the use of the fulltext capability of postgres, I have a table which is defined as:
CREATE TABLE affiliate_products (
id ...
6
votes
1answer
2k views
How do I enable the PostgreSQL function profiler?
This took me a while to figure out and I found the answer on a foreign-language wiki a number of weeks ago, and it was very helpful, so I thought I would share.
5
votes
4answers
564 views
Good resources for learning PL/pgSQL? [closed]
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 the tutorial in the ...
5
votes
6answers
5k 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 independent ...
5
votes
3answers
985 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 all approximately ...
4
votes
1answer
115 views
PostgreSQL functions returning void
Functions written in PL/pgSQL or SQL can be defined as RETURNS void. I recently stumbled upon an odd difference in the result.
Consider the following demo:
CREATE OR REPLACE FUNCTION f_sql()
...
4
votes
3answers
148 views
PostgreSQL parameterized Order By / Limit in table function
I have a sql function that does a simple sql select statement:
CREATE OR REPLACE FUNCTION getStuff(param character varying)
RETURNS SETOF stuff AS
$BODY$
select *
from stuff
where col = ...
4
votes
4answers
801 views
Postgres function or stored procedure that outputs multiple columns?
Here is what I ideally want...imagine that I have a table with the row A.
I want to do:
SELECT A, func(A) FROM table
and for the output to have say...4 columns.
Is there any way to do this? I have ...
4
votes
3answers
1k views
Can Postgres stored functions have both a return value AND out parameters?
I know Oracle and PL/SQL
Compared to what I know about Oracle PL/SQL, I'm not very familiar with PostgreSQL's stored procedures and plpgsql. In Oracle, there are two types of callables:
Procedures. ...
4
votes
1answer
168 views
Any difference in performance/compatibility of different languages in PostgreSQL?
In nowadays the PostgreSQL offers plenty of procedural languages: pl/pgsql, pl/perl, etc
Are there any difference in the speed/memory consumption in procedures written in different languages?
Does ...
4
votes
2answers
609 views
PHP calling PostgreSQL function - type issue?
I have a function in PostgreSQL / plpgsql with the following signature:
CREATE OR REPLACE FUNCTION user_login(TEXT, TEXT) RETURNS SETOF _get_session AS $$ ... $$
Where _get_session is a view. The ...
4
votes
7answers
276 views
How can I perform an AND on an unknown number of booleans in postgresql?
I have a table with a foreign key and a boolean value (and a bunch of other columns that aren't relevant here), as such:
CREATE TABLE myTable
(
someKey integer,
someBool boolean
);
insert into ...
3
votes
2answers
68 views
PostgreSQL function with a loop
I'm not good at postgres functions. Could you help me out?
Say, I have this db:
name | round |position | val
-----------------------------------
A | 1 | 1 | 0.5
A | 1 ...
3
votes
2answers
58 views
Renumber reference variables in text columns
Background
For a data entry project, a user can enter variables using a short-hand notation:
"Pour i1 into a flask."
"Warm the flask to 25 degrees C."
"Add 1 drop of i2 to the flask."
"Immediately ...
3
votes
2answers
67 views
Generate a random number of non duplicated random number in [0, 1001] through a loop
I need to generate a random number of non duplicated random number in plpgsql. The non duplicated number shall fall in the range of [1,1001]. However, the code generates number exceeding 1001.
...
3
votes
1answer
188 views
insert with dynamic table name in trigger function
I'm not sure how to achieve something like the following:
CREATE OR REPLACE FUNCTION fnJobQueueBEFORE() RETURNS trigger AS $$
DECLARE
shadowname varchar := TG_TABLE_NAME || 'shadow';
...
3
votes
4answers
468 views
How to set value of composite variable field using dynamic SQL
Given this type:
-- Just for testing purposes:
CREATE TYPE testType as (name text)
I can get the value of a field dynamically with this function:
CREATE OR REPLACE FUNCTION get_field(object ...
3
votes
2answers
143 views
There is a PL/pgSQL free environment to develop for PostgreSQL?
I want to know if there is a free environment to develop in PL/pgSQL.
Writing the code in Notepad++, replacing the function and running it turns the process slow. I'm using pgAdmin(only to replace ...
3
votes
1answer
90 views
What is the proper syntax for PostgreSQL stored procedures (functions)?
I'm trying to write two types of stored procedures in PostgreSQL. From what I understand Postgre only has functions. I was wondering if someone can take a look at my code and offer pointers. Also, I'm ...
3
votes
1answer
258 views
Calling a function that returns a refcursor
I am using Postgresql 8.3 and have the following simple function that will return a refcursor to the client
CREATE OR REPLACE FUNCTION function_1() RETURNS refcursor AS $$
DECLARE
...
3
votes
2answers
265 views
plpgsql: concatenation of variable into FROM clause
I'm new to Postgresql and struggling to build a function for looping over a series of CSV files and loading them. I can make the COPY work just fine with a single file, but I'm unable to get the FOR ...
3
votes
1answer
311 views
Dynamically-generated table-name in PostgreSQL COPY command
This PostgreSQL COPY command works:
copy tablename from E'c:\\abc\\a.txt';
but I want the tablename to be dynamically generated. How can I do this?
3
votes
3answers
551 views
How to split a type into multiple columns in Postgres?
I have the following code to return multiple values from pl/python:
CREATE TYPE named_value AS (
name text,
value integer
);
CREATE or replace FUNCTION make_pair (name text, value integer)
...
3
votes
3answers
1k views
How to return multiple fields as a record in postgreSQL pl/pgsql?
I am writing a SP, using pl/pgSQL
I want to return a record, which comprises of fields retrieved from several different tables.
The SP I want to write looks something like this:
CREATE OR REPLACE ...
3
votes
3answers
482 views
Rails misbehaving wrt Postgres SERIAL NOT NULL column
I am developing a (currently) Rails 2.3.x application with a PostgreSQL 8.4 database backend. In my Rails application, I have a model corresponding to a database table that has two columns of datatype ...
3
votes
1answer
1k views
Variable containing the number of rows affected by previous DELETE? (in a function)
I have a function that is used as an INSERT trigger. This function deletes rows that would conflict with [the serial number in] the row being inserted. It works beautifully, so I'd really rather not ...
3
votes
2answers
466 views
Porting Oracle Procedure (With Specific Function Calls) To Postgres PL/PGSQL
(This is similar to a question I asked earlier: http://stackoverflow.com/questions/2277731/porting-oracle-procedure-to-postgresql)
I need to port:
/*
|| The following private procedure will ...
3
votes
1answer
1k views
Stored Procedures in Python for PostgreSQL
we are still pretty new to Postgres and came from Microsoft Sql Server.
We are wanting to write some stored procedures now. Well, after struggling to get something more complicated than a hello world ...
3
votes
1answer
3k views
ERROR: query has no destination for result data
CREATE OR REPLACE FUNCTION _chkLogin(userid varchar, pwd varchar)
RETURNS BOOLEAN AS
$BODY$
DECLARE
passed BOOLEAN;
BEGIN
SELECT (_password = $2) FROM _vRegistration WHERE _userid = $1;
RETURN ...
3
votes
1answer
729 views
Calculate working hours between 2 dates in Postgresql
I am developing an algorithm with Postgres (PL/PgSQL), and I need to calculate the number of working hours between 2 dates, taking into account that weekends are not working and the rest of the days ...
2
votes
2answers
87 views
Execute deferred trigger only once per row in PostgreSQL
I have a deferred AFTER UPDATE trigger on a table, set to fire when a certain column is updated. It's an integer type I'm using as a counter.
I'm not 100% certain but it looks like if I increment ...
2
votes
2answers
82 views
Substitute for MySQL's variables in PostgreSQL?
We often use quick one-off SQL files to insert or update data in an existing database. The SQL is usually written by a developer, tested on the development system, and then imported in the production ...
2
votes
1answer
47 views
Is it possible to create a function in PostgreSQL that takes a column name as input?
I have two tables like this:
CREATE TABLE table1_lang
(
id serial NOT NULL,
lang1 character varying,
lang2 character varying,
...
)
CREATE TABLE table2_lang
(
id serial NOT NULL,
...
2
votes
1answer
42 views
copying the old table - trigger in sql\plpgsql
i have a trigger for a certain table in my database,
CREATE TRIGGER trig_trig
AFTER DELETE OR UPDATE OR INSERT ON A
FOR EACH ROW
EXECUTE PROCEDURE trig_func();
anyway.. i want to create a copy of ...
2
votes
2answers
69 views
Function as parameter to another function in Postgres
Can I create a user defined function in Postgres either through the C-Language Function API or by using pl/pgsql which accepts a callback function as parameter?
As far as I see there is no way to do ...
2
votes
1answer
241 views
Declare variable of composite type in PostgreSQL using %TYPE
Question: How can I declare a variable of the same type a parameter in a stored function?
The simple answer is use %TYPE, this works:
CREATE OR REPLACE FUNCTION test_function_1(param1 text)
...
2
votes
1answer
58 views
Why I'm getting an error informing that “a result was not expected” when executing stored procedures on PostgreSQL from Java in a batch?
I have this procedure in the database:
CREATE OR REPLACE FUNCTION replacePageRelevance(id INT, value REAL) RETURNS VOID AS $$
BEGIN
INSERT INTO pageRelevance VALUES (id,value);
EXCEPTION WHEN ...
2
votes
2answers
93 views
PL/pgSQL: finding all groups person belongs to (also indirectly)
Simple intro:
I have a database with users and groups.
Every user might be a member of one or more groups.
Every group might have one or more parent groups.
Schema:
CREATE TABLE users(
username ...
2
votes
1answer
120 views
Set of values in pl/pgsql
I'm writing some pl/pgsql code in postgres - and have come up to this issue. Simplified, my code looks like this:
declare
resulter mytype%rowtype;
...
for resulter in
select id, [a lot ...
2
votes
1answer
119 views
array_length() of an empty array returning NULL
I'm developing some stored proceduces in PL/pgSQL and some of them are giving me some problems. The sprocs I'm developing receive by parameter an array which I use in a FOR LOOP to get all its ...
2
votes
4answers
268 views
ERROR: COPY delimiter must be a single one-byte character
I want to load the data from a flat file with delimiter "~,~" into a PostgreSQL table. I have tried it as below but looks like there is a restriction for the delimiter. If COPY statement doesn't allow ...
2
votes
2answers
204 views
Postgresql: Problem with selecting arrays in set-returning plpgsql function
I am trying to select arrays in a set-returning function in postgres 8.4, but receiving
the error:
"array value must start with "{" or dimension information".
This issue appears to relate to ...
2
votes
1answer
249 views
Store select query's output in one array in postgres
My code is
select column_name from information.schema.columns where table_name='aean'
It returns column names of table aean.
Now I have declared an array:
DECLARE colnames text[]
How can I store ...
2
votes
2answers
97 views
Unexpected SQL results: string vs. direct SQL
Working SQL
The following code works as expected, returning two columns of data (a row number and a valid value):
sql_amounts := '
SELECT
row_number() OVER (ORDER BY taken)::integer,
avg( ...
2
votes
3answers
289 views
In a PostgreSQL WHERE clause, how do I find all rows whose ID's are NOT in an array?
Okay, I've got a stored procedure... how do I find all rows whose ID's are not in an array? (Keep in mind that I'm using a PostgreSQL array that is created dynamically when the stored procedure is ...