In order to get a more efficient xml file (with less data) I thought let's make a hierarchical. How can I make a hierarchical file and easily import it into access without a dtd or schema?
Table basicinfor
Name state
Johanna NY
Exis NY
Albert TX
The 'state' has recurring values and could be reflected more efficiently in a hierarchical order
<Basicinfo>
<State>NY
<Name>Johanna</Name>
<Name>Exis</Name
</State>
<State>TX
<Name>Albert</Name>
</State>
</Basicinfo>
But it doesn't work!
Table basicinfor
Name state
Johanna NY
Exis NY
Albert TX
The 'state' has recurring values and could be reflected more efficiently in a hierarchical order
<Basicinfo>
<State>NY
<Name>Johanna</Name>
<Name>Exis</Name
</State>
<State>TX
<Name>Albert</Name>
</State>
</Basicinfo>
But it doesn't work!