Calls
-
PROCEDURE DBMS_XMLSCHEMA.registerSchema(schemaURLIN VARCHAR2,schemaDocIN {VARCHAR2 | CLOB | BFILE | SYS.XMLType | SYS.URIType},localIN BOOLEAN := TRUE,genTypesIN BOOLEAN := TRUE,genbeanIN BOOLEAN := FALSE,[genTablesIN BOOLEAN := TRUE,]forceIN BOOLEAN := FALSE,ownerIN VARCHAR2 := NULL); Registers schemaDoc, which has a datatype varying according to the type of schema being registered, with the URL of schemaURL. If local, the schema is local; if not, the schema is global. If genTypes, the schema compiler will generate object types. If genbean, the schema compiler will generate object types. If force, the schema registration will not raise errors and will instead create an invalid XML schema. owner is the database owner who owns the XML schema; if owner is NULL, the user owns the schema. genTables is used only for the VARCHAR2 datatype of schemaDoc and causes the schema compiler to generate tables.
-
PROCEDURE DBMS_XMLSCHEMA.registerURI(schemaURLIN VARCHAR2,schemaDocURIIN VARCHAR2,localIN BOOLEAN := TRUE,genTypesIN BOOLEAN := TRUE,genbeanIN BOOLEAN := FALSE,genTablesIN BOOLEAN := TRUE,forceIN BOOLEAN := FALSE,ownerIN VARCHAR2 := NULL); Registers the schema at schemaDocURI with the URL of schemaURL. If local, the schema is local; if not, the schema is global. If genTypes, the schema compiler will generate object types. If genbean, the schema compiler will generate object types. If genTables, the schema compiler will generate tables. If force, schema ...