Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in /mnt/web018/d2/82/51207682/htdocs/armbruster-it/joomla33/templates/stefans_blog_05/functions.php on line 182
... b where b.ID = a.ID
) AS BLOB_COLUMN
FROM LOCAL_TABLE a;
Solution 2: Pipelining Functions
CREATE TYPE object_row_type AS OBJECT (
MYID NUMBER,
MYCLOB CLOB ...
... id = a.id ' ||
' ) as phone_numbers ' || ' from ex01_person_tb a ';
-- Create the XML aus SQL
l_xml := itstar_xml_util.sql2xml(l_sql_string);
-- Display the XML
dbms_output.put_line(l_xml.getclobval());
end;
...
Oracle Developers are often faced with the problem to handle LOB data between several oracle instances via a database link. With plain SQL it is not allowed to select, insert or update a LOB on ...