REF
, to take the REF
of a row in an object table.
REF
to a new row in an object table while inserting.
DEREF
, to return an object value identified by a reference.
|
DBMS_OUTPUT
package enables you to display output from PL/SQL blocks.
The procedure PUT_LINE
outputs information to a buffer in the SGA (System Global Area), a memory region within main memory used to store data for fast access.
You display the information by calling the procedure GET_LINE
or by setting SERVEROUTPUT ON
in SQL*Plus.
DUAL
is a table automatically created by Oracle along with the data dictionary.
Selecting from the DUAL
table is useful for computing a constant expression with the SELECT
command.
All roads lead to Rome. |