Closed PhillipTommerholt closed 5 years ago
Hi Phillip,
If you take a closer look at any table[number].xsd in the SIARD file, you will find a XML part with this structure:
<xs:element name="table">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" minOccurs="0" name="row" type="rowType"/>
</xs:sequence>
</xs:complexType>
</xs:element>
The type attribute in xs:element is rowType, where it should be recordType as SIARD 2.1 specification states.
The report message can be improved to show why its giving different counts.
Also that is related with the issue #377.
Oh, I see. Thx for clarification!
You can fix the SIARD by importing and exporting with DBPTK version 2.4.0 or above
SIARD spec states this: I have this siard file with 14 tables and 152 columns: MSSQL_Northwind.siard.zip
I get this error from app.log:
in: dbptk-app.log.txt I get this error in the validation report:
When I look at metadata.xml and table1 it describes 4 columns. When I look at table1.xml it has 4 columns When I look at table1.xsd it describes 4 columns
So something seems not right?
Best regards Phillip