Oracle8i Application Developer's Guide - Large Objects (LOBs) Release 2 (8.1.6) Part Number A76940-01 |
|
Internal Persistent LOBs, 40 of 42
See:
"Use Case Model: Internal Persistent LOBs Basic Operations", for all basic operations of Internal Persistent LOBs. |
This procedure describes how to use UPDATE as SELECT with LOBs.
Not applicable.
Use the following syntax reference:
This example updates voice-over data from archival storage (VoiceoverLib_tab
) by means of a reference:
The examples are provided in SQL and apply to all six programmatic environments:
UPDATE Voiceover_tab SET (Originator, Script, Actor, Take, Recording) = (SELECT * FROM VoiceoverLib_tab T2 WHERE T2.Take = 101); UPDATE Multimedia_tab Mtab SET Voiced_ref = (SELECT REF(Vref) FROM Voiceover_tab Vref WHERE Vref.Actor = 'James Earl Jones' AND Vref.Take = 1) WHERE Mtab.Clip_ID = 1;
|
![]() Copyright © 1996-2000, Oracle Corporation. All Rights Reserved. |
|