Tagged Questions

2
votes
1answer
111 views

Postgres 9.0.4 : Error calling function which returns a ROWTYPE from within another function

I am experiencing unexpected behaviour on Postgres 9.0.4 using pl/pgsql relating to selecting from a function that returns a ROWTYPE into a ROWTYPE variable from within another function. In the ...
1
vote
1answer
315 views

Problem with a PostgreSQL function that return multiple rows

Hello i want to return a multiple row from a function but i have this persistant error anybody can give me a hand, thanks!! Here is the error code: ERROR: invalid input syntax for integer: ...
0
votes
1answer
655 views

Returning a Custom Type from a Postgresql function

I'm trying to return a Custom type from a PostgreSQL function as follows: DROP TYPE IF EXISTS GaugeSummary_GetDateRangeForGauge_Type CASCADE; -- Drop our previous type CREATE TYPE ...
0
votes
1answer
1k views

Problem looping data in a postgres function using %ROWTYPE

I am trying to create a function in postgres that retrieves data from one table and inputs into another. I am using the %ROWTYPE type to store the temporary data from the select statement and then ...