1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
sqlplus mni/mni
SQL*Plus: Release 8.1.7.0.0 - Production on Ma Nov 13 17:08:55 2007
(c) Copyright 2000 Oracle Corporation. All rights reserved.
Connected to:
Oracle8i Enterprise Edition Release 8.1.7.4.0 - Production
With the Partitioning option
JServer Release 8.1.7.4.0 - Production
SQL> var c refcursor
SQL> exec :c := pkg_adhesion.TEST_ADHESIONS;
PL/SQL procedure successfully completed.
SQL> print c
EMPNO ENAME JOB MGR HIREDATE SAL COMM
---------- ---------- --------- ---------- -------- ---------- ----------
DEPTNO
----------
7369 SMITH CLERK 7902 17/12/80 800
20
7499 ALLEN SALESMAN 7698 20/02/81 1600 300
30
... |