May 2002
Beginner to intermediate
560 pages
11h 36m
English
Elements that have attributes specified in them will result in inferred tables. For example, consider the following XML:
<DocumentElement> <Element1 attr1="value1"/> <Element1 attr1="value2">Text1</Element1> </DocumentElement>
The inference process will produce a table named “Element1.”
DataSet: DocumentElement
Table: Element1
| attr1 | Element1_Text |
|---|---|
| value1 | |
| value2 | Text1 |