PL/pgSQL is the default procedural language for the PostgreSQL database system. Questions about PL/pgSQL should probably be tagged "PostgreSQL" as well.

learn more… | top users | synonyms

1
vote
2answers
32 views

Returning results from a function in 'select statement' format

I have a function that looks like this: CREATE OR REPLACE FUNCTION mffcu.test_ty_hey() RETURNS setof record LANGUAGE plpgsql AS $function$ Declare cname1 text; sql2 text; ...
0
votes
2answers
35 views

POSTGRES: problems on functions

So, Im trying to work on a simple book loans system and Im having problems on creating and using a function. I have a Loans 'Table', Copies 'Table' and Available 'View'. "Available View" looks like ...
1
vote
2answers
24 views

PostgreSQL: Call a Function More Than Once in FROM Clause

How can I call a function which returns records more than once in FROM clause? I understand that I have to specify a 'column definition list' when using a function that returns records. But how can I ...
2
votes
1answer
25 views

Get the count of rows from a COPY command

When copying data from a file, you get the count of rows in psql with the "command tag": db=# COPY t FROM '/var/lib/postgres/test.sql'; COPY 10 I need the number of rows and would like to avoid a ...
2
votes
2answers
54 views

Generate dates for a specific week of year

I'm fairly new to PostgreSQL and recently on my project I've encountered problem with retrieving all records for specific week of year. The main problem is of course with border weeks (1, and 52/53). ...
0
votes
1answer
31 views

Select a column default value into a variable in Pl/PgSQL

I'm trying to implement a generic trigger procedure to enable a sort a versioning scheme on tables. Tables all have version and current fields. On updates, in some situations based on a condition, i ...
0
votes
1answer
27 views

Syntax error 42601 when trying to run plpgsql function

I'm new to PL/pgSQL. While trying to insert data into tables the following function generates an error. This link defines the error, but I can't understand this link problem. CREATE OR REPLACE ...
-1
votes
0answers
21 views

Pl/pgsql function having local varaibles inside loop that return record resulted from query

I am declaring local variables inside Loop that returns records resulted from query. CREATE OR REPLACE FUNCTION stock_mineralwise_availability(mineralid integer,districtId character varying) ...
0
votes
1answer
36 views

Run plpgsql program to update the data in table

I am using Postgres 8.4. I want to update the data from using plpgsql and a cursor. When I try to run the plpgsql it generates an error. CREATE OR REPLACE FUNCTION updateScore() RETURNS void AS $$ ...
0
votes
2answers
41 views

Inserted, Deleted tables in postgreSQL, like SQL Server?

I want to create a trigger after a inserted event, but I need the data that I inserted in order to register into a new table for my trigger in PostgreSQL In SQL Server I capture these values from the ...
2
votes
2answers
39 views

a postgres update trigger performs everything else except the actual update

Let's use a test table : CREATE TABLE labs.date_test ( pkey int NOT NULL, val integer, date timestamp without time zone, CONSTRAINT date_test_pkey PRIMARY KEY (pkey) ); I have a trigger ...
0
votes
3answers
37 views

Create a function to get column from multiple tables in PostgeSQL

I'm trying to create a function to get a field value from multiple tables in my database. I made script like this: CREATE OR REPLACE FUNCTION get_all_changes() RETURNS SETOF RECORD AS $$ DECLARE ...
1
vote
2answers
57 views

How to improve postgresql request that throw a “statement timeout”

This request throw a statement timeout with postgresql. DELETE FROM my_table where my_table.id IN ( SELECT DISTINCT b.id FROM my_table a LEFT JOIN my_table b on b.rowA = a.rowA and ...
0
votes
2answers
35 views

perform true on joined tables

In PostgreSQL 8.4.13 I have two tables representing card games (each with 3 players) and the score results of those games. The players are identified by id column and the games by gid: # \d ...
0
votes
2answers
42 views

Longest matching substring

How would you search for the longest match within a varchar variable? For example, table GOB has entries as follows: magic_word | prize =================== sh| $0.20 sha| $0.40 ...
2
votes
3answers
53 views

query inside function returns NULL, query returns a value

Disclaimer: I am new to PostgreSQL, and even newer to functions in plpgSQL. I've read the documentation but I am stumped. Anyway, I have this function, to pick a charge band out of a table for ...
1
vote
3answers
50 views

Postgres function much slower when using input variables

I have a function in Postgres 8.3.5 that selects data from multiple tables and dumps the result in a single table: create or replace function test_function_2(startdate timestamp, enddate timestamp) ...
1
vote
2answers
39 views

Updating multiple columns that start with a specific string

I am trying to update a bunch of columns in a DB for testing purposes of a feature. I have a table that is built with hibernate so all of the columns that are created for an embedded entity begin with ...
2
votes
1answer
51 views

SELECT INTO with more than one attribution

This instruction works: SELECT INTO unsolvedNodes array_agg(DISTINCT idDestination) FROM road WHERE idOrigin = ANY(solvedNodes) AND NOT (idDestination = ANY(solvedNodes)); But I would like to use ...
0
votes
0answers
37 views

PostgreSQL: After using CreateLang, I still get an error “42704: language ”plpgsql“ does not exist”

I am using pgProvider on a MVC3 Mono application and had no issues on Windows Postgres 9.2. I am migrating to my production Linux/Mono environment, and received an error when attempting to access the ...
0
votes
1answer
27 views

Array in the IN operator

Does someone know how can I use an array in the IN operator in plpgsql? SELECT INTO unsolvedNodes array_agg(idDestination) FROM road WHERE idOrigin IN ???
0
votes
1answer
29 views

Retrieving Record type values in dynamic for

I've got function in which I use FOR loop with dynamic queries. Don't know why but postgres cannot retrieve single fields from record variable... Still got the error SELECT (1,token).id - syntax ...
0
votes
1answer
85 views

PostgreSQL - SQL state: 42601 syntax error

I would like to know how to use a dynamic query inside a function. I've tried lots of ways, however, when I try to compile my function a message SQL 42601 is displayed. The code that I use: CREATE ...
2
votes
2answers
68 views

Immediate update in PL/pgSQL functions

I'm working on a PL/pgSQL function "interpolate_values" with some time-consuming computations. A table called "interpolation_jobs" contains surveillance information about every function call, such ...
1
vote
1answer
45 views

PostgreSQL return table with update and select statement causing ambiguity

I'm working on a small art gallery web site for a friend of mine and have decided to go with PostgreSQL for various reasons. So far everything is working good but I've hit a small snag. The problem is ...
0
votes
1answer
53 views

Dump CSV into Postgresql table

below is my whole procedure to dum data from a file to POSTGRESQL-8.0 on RedHAt-7.2 now my issues is for every ROW the trigger is getting called and the procedure is executing . I want to do is once ...
2
votes
1answer
82 views

Best way to exclude outdated data from search in postgres

I have a table including: a text field 'value' a timestamp field 'creation_date' Table has indexes on id and on 'value' I must search this table for a given value and want to make search as fast ...
0
votes
2answers
55 views

Why does this function get exponentially more expensive?

If I create a function that loops through executing a bunch of dynamic queries, the process time seems to get exponentially larger. For the sake of an example, im going to use the following code. Keep ...
1
vote
2answers
60 views

Aggregating rows into JSON hash

I have the following table: roles id | name | person ---+-------+-------- 1 | admin | jon 2 | admin | fred 3 | user | alfred 4 | user | jon Where name can vary to any value. I'd like to ...
0
votes
1answer
66 views

Alternative to a LOT of case statements for a sequential scan of a big table [closed]

Im doing some data analysis and have to do a lot (32,000,000) of counts per where statements on a table that is over 100m rows. I initially created a function that does 32,000,000 loops/scans of the ...
0
votes
2answers
58 views

Function to DELETE rows taking the tablename as parameter

I want create a function: CREATE OR REPLACE FUNCTION medibv.delAuto(tableName nvarchar(50), columnName nvarchar(100),value nvarchar(100)) RETURNS void AS $BODY$ begin DELETE from tableName ...
1
vote
1answer
50 views

COPY with dynamic file name

I am trying to write a function to load csv data into a table. I want the input argument to be the path to the file. CREATE OR REPLACE FUNCTION public.loaddata(filepathname varchar) RETURNS void ...
0
votes
2answers
42 views

Duplicate single database record

Hello what is the easiest way to duplicate a DB record over the same table? My problem is that the table where I am doing this has many column, like 100+, and I don't like how the solution looks ...
0
votes
2answers
105 views

Not null constraint using triggers in SQL

I want to implement a not-null constraint on an attribute using a trigger. Here's my code: create table mytable2(id int); create or replace function p_fn() returns trigger as $prim_key$ begin if ...
1
vote
1answer
82 views

Postgres partition management with triggers. Issue altering tables

SHORT STORY: I have a partitioned postgres database with a table to track the partitions and triggers. The triggers need to alter the constraints on the partition tables (their valid_date ...
1
vote
2answers
76 views

Is my function prone to race conditions?

I'm writing a simple blogging engine and I wrote a function to create a post. The function contains this code: CREATE FUNCTION CreatePost(VARCHAR, TEXT, VARCHAR[]) RETURNS INTEGER AS $$ DECLARE ...
1
vote
1answer
29 views

Unexpected behaviour for custom type returned from a function

I have created a custom type CREATE TYPE rc_test_type AS (a1 bigint); and a function CREATE OR REPLACE FUNCTION public.rc_test_type_function(test_table character varying, dummy integer) RETURNS ...
0
votes
2answers
53 views

How to return a callableStatement result?

I'm using PostgreSQL and I have a function that returns a record: CREATE OR REPLACE FUNCTION fn_lisMatricula() RETURNS record AS $BODY$ SELECT mat.codigo as codmatr, mat.codigoalumno as codal, ...
-1
votes
2answers
105 views

postgresql FUNCTION syntax error

CREATE FUNCTION check_available_flightID(date) RETURNS integer AS $$ BEGIN SELECT FlightID FROM Flight WHERE FlightDate::date = $1; IF NEW.FlightID IS NULL THEN RAISE EXCEPTION 'No ...
0
votes
2answers
116 views

Iterating through PostgreSQL records. How to reference data from next row?

I'm new to PostgreSQL and writing functions here is tough as nails. So I'm hoping someone can help let me know how to do what I'm trying to do. I have a table of stock prices and dates. I want to ...
5
votes
2answers
112 views

Testing PostgreSQL functions that consume and return refcursor

I want to test results of a Postgres function (changing the function is not a possibility). The function receives as arguments a REFCURSOR and several other things and returns the same RECURSOR. ...
2
votes
1answer
45 views

plpgsql: strange implicit cast within function

I'm using PostgreSQL 8.1. I'm flummoxed by what's going on with implicit casting in this function: CREATE OR REPLACE FUNCTION this_is_weird(v_input TEXT) RETURNS TEXT AS $$ BEGIN IF v_input ...
1
vote
1answer
66 views

Update query taking forever

I have a table my_obj with two fields value_a varchar(5) and value_b varchar(5) Indeed the two values don't vary so much, and can be grouped in a pair. At best that gives a maximum number < 100 ...
3
votes
2answers
63 views

Need Assistance with a Postgres Trigger and Function

I have a lookup table that holds a column of sources (from various hardcoded campaigns captured through a webservice API I created) and the respective brands that should be associated with them. This ...
0
votes
1answer
38 views

match partial implementation in postgresql

I have to bring a solution to the match partial problem in postgresql. this is what I do.. DROP TRIGGER IF EXISTS match_partial on futbolista; DROP FUNCTION IF EXISTS match_partial(); CREATE ...
1
vote
2answers
105 views

How can I get results from a JPA entity ordered by distance?

I am currently writing a mobile application where the user has to pick a location from a list. All the locations are stored in a Postgres database using JPA from a Play app. What I would like to do ...
-2
votes
1answer
229 views

sql-looping through result set [closed]

my input parameters are lastname and firstname. I need to check whether the lastname and firstname already exists in the table author. So i need to do a SELECT statement on the colums lastname and ...
0
votes
1answer
51 views

PostgreSQL trigger updating secondary related table

I have two tables: table1 and table2, which triggers on inserts and on updates in the same function. As you insert a value in table1 or table2 a value is inserted in table3, with the value ...
0
votes
1answer
23 views

How do I change the formatting for my return values in this function?

I have a function I created like this: create or replace function core.nrt_summary_by_param_id(int) returns table (reason_type_id int, reason_id int, descr varchar(256), num int, pct numeric, ...
0
votes
1answer
79 views

INSERT from trigger not happening?

I'm new to triggers in PostgreSQL. I have 3 tables in this example table1, table2 and table3. The trigger fires on new record on table1. The trigger function loops through all records of table2 that ...

1 2 3 4 5 14