Subscribe to RSS feed

«

»

Apr
08

HOWTO: Compile a XML Schema in XMLDB

Just a simple script I want to keep for posterity. The foundations were laid by Mark Drake.

-- --------------------------------------------------------
--
-- Author     : Mark Drake
-- Purpose    : Compiling XML Schema
--
-- Altered    : Marco Gralike
-- Date       : 09/02/2007
-- Alteration : Different error handling
-- 
--
-- --------------------------------------------------------
SET echo ON 
 
-- spool compileSchemas.log 
-- connect &USERNAME/&PASSWORD 
-- set serveroutput on 
-- 
 
declare 
 
cursor getSchemaList IS 
  SELECT schema_url 
  FROM user_xml_schemas; 
 
begin 
 
FOR schema IN getSchemaList 
loop 
  begin 
    dbms_output.put_line('Processing : ' || schema.schema_url); 
    dbms_xmlschema.compileSchema(schema.schema_url); 
    dbms_output.put_line('Compiled'); 
  exception when others then 
    dbms_output.put_line('Failed ('||SQLCODE||'): ' ||SQLERRM); 
  end; 
end loop; 
end; 
/ 
 
-- --------------------------------------------------------

The “Invalid XDB schema – how to identify?” part, can be found in the following OTN XMLDB Forum Thread [here]

 


  • Digg
  • DZone
  • Reddit
  • Slashdot
  • StumbleUpon
  • Technorati
  • Twitter
  • del.icio.us
  • Hyves
  • Facebook
  • RSS