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
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 ...
... offers the dbms_lock package which is very helpful there to solve problems arround locking and synchronizing.
The best way to handle it is, to each have a function for set and release ...
... , because of the complexity of the parameter. Second, we need another PL/SQL function, which handles the parameter passing from Java to PL/SQL. This is the function we provide as an external interface, ...
... .. and the code of the corresponding Package Function:
function sql2xml(i_sql_string in varchar2) return xmltype is
l_context_handle dbms_xmlgen.ctxhandle;
l_xml xmltype;
l_r ...