Oracle XDBPI_FUNCIMPL
Version 26ai

General Information
Library Note Morgan's Library Page Header
The best Oracle News for FY2026

Oracle Database 26ai will be available on generic Linux platforms in January and soon on AIX and Windows
Purpose Undocumented PATH INDEX support
AUTHID DEFINER
Dependencies
XMLTYPE    
Documented No
First Available Not known
Security Model Owned by XDB with no privileges granted
Source {ORACLE_HOME}/rdbms/admin/catxdbpi.sql
 
NOOP_FUNC
Returns a zero if a valid XMLTYPE object is submitted xdbpi_funcimpl.noop_func(res IN sys.xmltype) RETURN NUMBER;
DECLARE
 inpVal XMLTYPE := XMLType('<things>
    <numbers>
      <item>1</item>
      <item>59</item>
    </numbers>
    <animals>
      <item>bird</item>
      <item>cat</item>
      <item>dog</item>
    </animals>
 </things>');
 retVal NUMBER;
BEGIN
  retVal := xdb.xdbpi_funcimpl.noop_func(inpVal);
  dbms_output.put_line(retVal);
END;
/
0

Related Topics
Built-in Functions
Built-in Packages
XMLTYPE
What's New In 21c
What's New In 26ai

Morgan's Library Page Footer
This site is maintained by Daniel Morgan. Last Updated: This site is protected by copyright and trademark laws under U.S. and International law. © 1998-2026 Daniel A. Morgan All Rights Reserved