Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
select length(
'12345678901234567890123456789012345678901234567890'
||'12345678901234567890123456789012345678901234567890'
||'12345678901234567890123456789012345678901234567890'
||'12345678901234567890123456789012345678901234567890'
... another 72 lines identical to the above
||'12345678901'
) string from dual;
STRING
------
3761
I'm sure we could suggest some ideas. I would need to know a few more specifications about the CLOB-to-DML task.John said:Do you have any good ideas for extracting CLOB's to DML insert statements?
UPDATE <target table> SET <CLOB column name> =
(SELECT <CLOB column name> FROM <source table>
WHERE <some joining condition>)
WHERE <some limiting condition>;
or
INSERT INTO <target table>
SELECT <column list>
FROM <source table>;