Validation « oracle « Java Database Q&A





1. How to validate an XML using XSD InputStream using oracle.xml.parser.v2.DOMParser    stackoverflow.com

I am trying to validate an XML file against a XSD document. There are two ways by which I am doing.

  1. Both XML and XSDs are files
  2. XML is a file and ...

2. validating xml document in oracle's java source    stackoverflow.com

Trying to do subject. I'm trying to use xsd from file(schemasource = 1) and from clob (schemasource = 0). I have two xsd schemas common_types.xsd and migom.xsd. second includes first. The problem is ...

3. Validating the data using Oracle PL SQL    coderanch.com

Hi, I have written an Oracle PL SQL Function which accepts few IN paramters. For e.g. function abc(x IN Varchar2(200)) / The parameter x accepts the order no. I want to make sure that x contains only order_number(always in numerics only) or order_number plus line_number(Order_Number-Line_Number -> for e.g 11101-1, 11102-34 in format etc separated by '-') I have read regular expression ...