Tagged Questions
The rowtype tag has no wiki summary.
2
votes
1answer
98 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 ...
2
votes
3answers
541 views
Oracle, how update statement works
Question 1
Can anyone tell me if there is any difference between following 2 update statements:
UPDATE TABA SET COL1 = '123', COL2 = '456' WHERE TABA.PK = 1
UPDATE TABA SET COL1 = '123' WHERE ...
1
vote
1answer
307 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: ...
1
vote
2answers
375 views
dynamical %rowtype variables in plsql
How to make dynamic %rowtype var's
table_name varchar2 (300)
type varchar2_tab IS table of table_name%rowtype;
1
vote
1answer
176 views
How to pass an entire row (in SQL, not PL/SQL) to a stored function?
I am having the following (pretty simple) problem. I would like to write an (Oracle) SQL query, roughly like the following:
SELECT count(*), MyFunc(MyTable.*)
FROM MyTable
GROUP BY MyFunc(MyTable.*)
...
0
votes
1answer
69 views
Unable to do paging on gridview asp.net,
I have code to have a dynamic button appear after it does an if else loop for checking for some data.
however, the gridview cant do any paging. it only shows the first page and cant go to 2nd page ...
0
votes
1answer
627 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 ...