I am trying to create a xml from a SQL select, but I can not insert “:” (like cac:PartyTaxScheme), neither can put 2 data in one element, look element “cbc:CompanyID” (<cbc:CompanyID schemeName=”31″ schemeID=”0″ schemeAgencyID=”195″>900711000&l…
Tag: xsd
How do I fix ORA-01843: not a valid month?
So at the query level, I have it: And I’ve tried looking at a few articles with one most notable: How to change the date format in Oracle BI Publisher? I have also tried using: While going through structure and XML I noticed my date is in string format: element name=”DATETIME” value=”D…
XML Schema totalDigits/fractionDigits vs. SQL precision/scale
I’d like to find out the correspondence between XML Schema totalDigits/fractionDigits and SQL numeric precision/scale. 1) Assume we have the following simple type: How would I represent it in SQL? Let’s assume HSQL dialect (it does not matter much). I’m interested in the most restrictive SQL…
How can I create database tables from XSD files?
I have a set of XSDs from which I generate data access classes, stored procedures and more. What I don’t have is a way to generate database table from these – is there a tool that will generate the …