Tagged Questions
0
votes
1answer
10 views
Set to variable value, from executing query (in plpgsql style)
I need that set to variable value, from EXECUTING query.
If write this, in pure SQL style, works:
// here declaring function and etc...
DECLARE cnt INTEGER;
EXECUTE 'SELECT COUNT(*) FROM t' INTO ...
1
vote
2answers
16 views
Handling EXCEPTION and return result from function
This is my code
CREATE OR REPLACE FUNCTION test_excep (arg INTEGER) RETURNS INTEGER
AS $$
DECLARE res INTEGER;
BEGIN
res := 100 / arg;
BEGIN
EXCEPTION
...
2
votes
1answer
75 views
Join two tables using id and descendants from tree like table
I have the following tables:
CREATE TABLE element (
element_id serial PRIMARY KEY,
local_id integer,
name varchar,
CONSTRAINT fk_element_local_id FOREIGN KEY (local_id)
REFERENCES local ...
2
votes
2answers
48 views
Cancel previous operations in user defined function
Is it possible to cancel previous operations in a user defined function?
For example:
CREATE OR REPLACE FUNCTION transact_test () RETURNS BOOLEAN
AS $$
BEGIN
UPDATE table1 SET ...
...
1
vote
2answers
70 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 ...
1
vote
1answer
114 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
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 ...
3
votes
1answer
131 views
PostgreSQL dynamic fetch foward count value
I have the following function used to retrieve a batch of Ids from a table. This function is being used as the OFFSET and LIMIT clauses seem to offer poor performance.
CREATE OR REPLACE FUNCTION ...
3
votes
2answers
99 views
Insert using a function that returns two values per row
This function:
CREATE OR REPLACE FUNCTION fn_test1()
RETURNS SETOF date AS
$BODY$
declare
i int;
begin
i:=0;
while i<5 loop
return next '2001-01-02'::date;
i:=i+1;
end loop;
end
$BODY$
...
1
vote
1answer
92 views
Table locking in a plpgsql function
Let's say I've written plpgsql function that does the following:
CREATE OR REPLACE FUNCTION foobar (_foo_data_id bigint)
RETURNS bigint AS $$
BEGIN
DROP TABLE IF EXISTS tmp_foobar;
CREATE ...
1
vote
1answer
100 views
PostgreSQL exceptions with failed inserts
Is there any circumstance where an exception will not be thrown if an insert statement in a stored procedure fails?
I'm using catch-all style exception handling in my PostgreSQL stored procedures via ...
1
vote
1answer
611 views
PostgreSQL cannot begin/end transactions in PL/pgSQL
I am seeking clarification of how to ensure an atomic transaction in a plpgsql function, and where the isolation level is set for this particular change to the database.
In the plpgsql function ...
0
votes
1answer
69 views
what is the postgreSQL 9.2 counterpart to this SQL Server if exists ({sql-statement}) conditional construct
I have this in a stored proc in SQL Server:
if not exists
(my select statement)
insert T
(a, b, c)
values
(v_a, v_b, v_c) -- ...
0
votes
1answer
67 views
PostgreSQL function-OID: 'my OID' where 'my' is the currently executing user-defined-function
This query returns the OID of the function whose name and signature is supplied:
select 'myfunc(signature)'::regprocedure::oid;
But is there something in PostgreSQL plpgsql like a ...
0
votes
1answer
156 views
PostgreSQL PL/pgSQL random value from array of values
How can I declare an array like variable with two or three values and get them randomly during execution?
a := [1, 2, 5] -- sample sake
select random(a) -- returns random value
Any suggestion ...
3
votes
1answer
175 views
How to XML-encode a string in PostgreSQL?
Question: I can create a XML-encoded string in Postgres like this:
SELECT xmlelement(name name, 'AT&T', null )
now I want to get the xml encoded value, that is to say AT&T.
But if I ...
2
votes
1answer
357 views
Postgres 9.2 PL/pgSQL simple update in loop
I have a following table:
+----+----------+----------+
| id | trail_id | position |
+----+----------+----------+
| 11 | 16 | NULL |
| 12 | 121 | NULL |
| 15 | 121 | NULL |
...
1
vote
3answers
905 views
How to create sequence if not exists
I tried to use code from check if sequence exists postgres (plpgsql).
To create sequence if it does not exists. Running this code two times causes an exception:
sequence ... already exists.
How ...
0
votes
1answer
487 views
Getting Affected Rows by UPDATE statement in RAW plpgsql
This has been asked multiple times here and here, but none of the answers are suitable in my case because I do not want to execute my update statement in a PL/PgSQL function and use GET DIAGNOSTICS ...
