Use 'variable command' to define variable to reference cursor : Variable « SQL PLUS Session Environment « Oracle PL/SQL Tutorial






SQL>
SQL> set echo on
SQL>
SQL> create table t as select * from all_users;

Table created.

SQL>
SQL> variable x refcursor
SQL>
SQL> begin
  2      open :x for select * from t;
  3  end;
  4  /

PL/SQL procedure successfully completed.

SQL>
SQL> delete from t;

15 rows deleted.

SQL>
SQL> commit;

Commit complete.

SQL>
SQL> print x

USERNAME                          USER_ID CREATED
------------------------------ ---------- ---------
PLSQL                                  73 24-JUL-08
JAVA2S                                 36 28-JUN-08
FLOWS_020100                           35 07-FEB-06
FLOWS_FILES                            34 07-FEB-06
HR                                     33 07-FEB-06
MDSYS                                  32 07-FEB-06
ANONYMOUS                              28 07-FEB-06
XDB                                    27 07-FEB-06
CTXSYS                                 25 07-FEB-06
DBSNMP                                 23 07-FEB-06
TSMSYS                                 20 07-FEB-06

USERNAME                          USER_ID CREATED
------------------------------ ---------- ---------
DIP                                    18 07-FEB-06
OUTLN                                  11 07-FEB-06
SYSTEM                                  5 07-FEB-06
SYS                                     0 07-FEB-06

15 rows selected.

SQL>
SQL> drop table t;

Table dropped.








29.61.Variable
29.61.1.Use 'variable command' to define variable to reference cursor
29.61.2.Bind variables can be declared in your SQL*Plus script,Preface a bind variable with a colon to reference it in a PL/SQL block
29.61.3.Bind variables can even be referenced by SQL queries
29.61.4.Define variable and print its value out
29.61.5.Define variable and set value
29.61.6.Define variable and use it in sql statement
29.61.7.Print variable out
29.61.8.Undefine variable
29.61.9.Check pre-defined variables
29.61.10.Use defined-variable in update set statement