XML DB

Changing values in the XML DB configuration

To get to the point, here's an example for changing the HTTP port of XML DB's WebDav server:
CALL DBMS_XDB.CFG_UPDATE(
  UPDATEXML(
    DBMS_XDB.CFG_GET(),
    '/xdbconfig/descendant::http-port/text()',
    '8888'
  )
);
Run it with user "SYS as SYSDBA" in the database.
Read on for some explanation of the details.

Syndicate content