The XML you have is not the standard representation of a table with rows and fields, which would be structured as in the attached code snippet.
Access sees the Region element as the definition of a Row and the child elements of that (everything between and ) as the fields in the Row.
In this case you hvae only one field, Value
The Named attributes in each Region element (Name="address" Type="Datasource" DataColumn="address" etc...) have no special meaning in XML and must be specific to whatever software created the file.
It will require code to interpret the file in any other way.
1:
2:
3:
4:
5:
6:
|
2 Hartford Ave
Bellingh
...
|