Top "Sys-refcursor" questions

A predefined Oracle cursor variable type.

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 …

oracle stored-procedures plsql oracle-sqldeveloper sys-refcursor
How to call Oracle Function or Procedure using Hibernate (EntityManager) or JPA

I have an Oracle function which return sys-refcursor and when I call this function using Hibernate, I am getting the …

java oracle hibernate jpa sys-refcursor
Function return sys_refcursor call from sql with specific columns

This may find little silly, but I would like to know whether this is possible. I have a function which …

sql function plsql oracle10g sys-refcursor
SYS_REFCURSOR as OUT parameter

I have a table contains (username-primarykey,password,age,gender); have to create procedure like procedure(username in varchar,s_cursor …

oracle procedure sys-refcursor
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 …

sql oracle stored-procedures dynamic-sql sys-refcursor
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 …

sql database oracle plsql sys-refcursor
How to display a sys_refcursor data in TOAD's DataGrid

Please i need help. (I SEARCHED A lot and get more confused . ) I use Toad 9.7.25 and i made this procedure (…

sql plsql oracle11g toad sys-refcursor
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 …

oracle sys-refcursor
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 …

oracle function odp.net sys-refcursor ref-cursor
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: …

oracle function odp.net sys-refcursor