Tagged Questions
4
votes
1answer
3k views
How to return a RefCursor from Oracle function?
I am trying to execute a user-defined Oracle function that returns a RefCursor using ODP.NET. Here is the function:
CREATE OR REPLACE FUNCTION PKG.FUNC_TEST (ID IN TABLE.ID%type)
RETURN ...
4
votes
5answers
23k views
How can I use Oracle SQL developer to run stored procedures?
* EDIT6: * This is what ended up working for me (from accepted answer):
var ret1 number
var tran_cnt number
var msg_cnt number
var rc refcursor
exec :tran_cnt := 0
exec :msg_cnt := 123
exec ...
2
votes
3answers
150 views
passing data from Oracle stored procedures to Java
We're going to write a new web interface for a big system based on Oracle database. All business rules are already coded in PL/SQL stored procedures and we'd like to reuse as much code as possible. ...
2
votes
1answer
527 views
ODP .NET Getting a SYSREFCURSOR output. {“Unsupported column datatype”} error
I am trying to execute a procedure that returns a stored procedure. My version of Oracle DB is 9.2 and the ODP .NET version is 10.2.0.100
My C# code looks like this.
OracleCommand od = new ...
2
votes
1answer
136 views
Oracle Cursor and JDBC ODBC
I have some procedures to execute in the database that has an OUT REFCURSOR parameter.
When I am connecting with the JDBC thin client, everything works fine. However, if I were to change the ...
1
vote
1answer
39 views
Using of cursors as function output in procedure (Oracle)
I'm trying to find a solution but all the time sth is wrong. So what is my problem:
I have a function:
function fun1 (
p_param1 number) return sys_refcursor
is
c_result sys_refcursor;
begin
...
1
vote
1answer
222 views
How to close a returning cursor in PL/SQL?
I am new to PL/SQL and I just got to cursors in my learning process. I've been seeing stored procedure parameters with type OUT SYS_REFCURSOR which, as far as I understand, its purpose is to 'return ...
1
vote
2answers
2k views
Oracle EXECUTE IMMEDIATE into a cursor
I have a stored procedure which used the EXECUTE IMMEDIATE command to execute a very long string. How do I support a very long string and return the data into a refcursor?
1
vote
3answers
383 views
How to call a function in a package
I'm doing the following but it doesnt work
select package_name.function_name(param,param) from dual
I'm calling a function that returns a cursor so im guessing "from dual" is the problem
is there ...
1
vote
1answer
536 views
how to call one stored proc from anther and modify refcursor that is returned?
I have two stored procs, p_proc1 and p_proc2. p_proc1 returns a refcursor and I want to use the data in p_proc2. Is it possible call p_proc1 in p_proc2 and modify the dataset (outer join another ...
1
vote
2answers
9k views
Returning Oracle ref cursor and appending multiple results
I have this problem I'm hoping someone knows the answer to. I have an oracle stored procedure that takes a customer id and returns all the customer's orders in a ref_cursor. Oversimplifying it, this ...
1
vote
3answers
3k views
Binding ASP.NET GridView to an Oracle SYS_REFCURSOR
We have a Procedure in Oracle with a SYS_REFCURSOR output parameter that returns the data we want to bind to an ASP.NET GridView control. I've seen this done before but I can't find the original ...
0
votes
1answer
280 views
Ref cursor with Execute immediate
I want to get the results in ref_cursor, but I am not able to do that.
Please suggest me how to get the results in ref_cursor using Execute immediate
CREATE OR REPLACE PROCEDURE TEST_PROC_QT ( ...
0
votes
1answer
2k views
How to call an Oracle function with a Ref Cursor as Out-parameter from C#?
I'm using a product that provides a database API based on Oracle functions and I'm able to call functions via ODP.NET in general. However, I can't figure out, how to call a function that includes a ...
0
votes
0answers
276 views
nhibernate, call function in Oracle which returns sys refcursor
I am trying to call a function (oracle) using nhibernate that return ref cursor, but i am not successful with the hbm file, can any one please guide me with this.
If i make it like <return class ...
0
votes
2answers
345 views
Oracle ref cursor fetch hangs if it contains 1 single record
I have a weird problem right now that if a ref cursor returned from a stored procedure that has only 1 record in it, the fetch operation will hang and freeze. The stored procedure execution was really ...
0
votes
1answer
327 views
Returning a cursor from an inner procedure to outer procedure in oracle pl/sql
I am using oracle pl/sql procedure.
I am calling one procedure inside the another. I want to return a cursor from the nested procedure to the outer procedure.Is this possible.How adversely does it ...
0
votes
2answers
723 views
Quick-n-dirty results: View results of Procedure OUT cursor in SQL Worksheet?
Platform: Oracle
Language: PL/SQL
Issue: Want to output a procedure OUT cursor into the SQLDeveloper SQLWosksheet.
Anyone know how to use the Oracle "Select * from Table( PipelinedFunction( Param ) ...
0
votes
3answers
3k views
Oracle SQL Developer - Missing IN or OUT parameter at index:: 1
I am having trouble testing this simple stored procedure in Oracle Sql Developer. The stored procedure does a simple select and returns a cursor.
create or replace
PROCEDURE GET_PROJECT_DRF_HISTORY
...
0
votes
1answer
477 views
How to use NHibernate to process multiple resultsets/SYS_REFCURSOR from Oracle stored procedure
I can get NHibernate (v2) to return and process a single SYS_REFCURSOR that contains my single resultset. Is it possible for multiple resultsets/SYS_REFCURSOR's in NHibernate? What would be the syntax ...