You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafodion.apache.org by db...@apache.org on 2017/08/17 17:54:51 UTC

[2/3] incubator-trafodion git commit: Capitalize XML

Capitalize XML


Project: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/commit/0a55f0df
Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/tree/0a55f0df
Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/diff/0a55f0df

Branch: refs/heads/master
Commit: 0a55f0df5672238440354e11d6f5abf539d07fd9
Parents: d19c364
Author: liu.yu <yu...@esgyn.cn>
Authored: Tue Aug 15 11:22:21 2017 +0800
Committer: liu.yu <yu...@esgyn.cn>
Committed: Tue Aug 15 11:22:21 2017 +0800

----------------------------------------------------------------------
 docs/odb_user/src/asciidoc/_chapters/load.adoc | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/0a55f0df/docs/odb_user/src/asciidoc/_chapters/load.adoc
----------------------------------------------------------------------
diff --git a/docs/odb_user/src/asciidoc/_chapters/load.adoc b/docs/odb_user/src/asciidoc/_chapters/load.adoc
index e782026..91c0125 100644
--- a/docs/odb_user/src/asciidoc/_chapters/load.adoc
+++ b/docs/odb_user/src/asciidoc/_chapters/load.adoc
@@ -639,7 +639,7 @@ NOTE: odb does not load rows where the size of the input file is greater than th
 
 [[load_xml_files]]
 == Load XML Files
-Trafodion odb supports loading xml files into tables, the key construct for xml files can be an element or an attribute.
+Trafodion odb supports loading XML files into tables, the key construct for XML files can be an element or an attribute.
 
 === Load XML Files Where Data is Stored in Element Nodes
 
@@ -659,7 +659,7 @@ Trafodion odb supports loading xml files into tables, the key construct for xml
 </data>
 ```
 
-TIP: To check what will be loaded before loading xml file into table, run the following command
+TIP: To check what will be loaded before loading XML file into table, run the following command
 `./odb64luo -l src=test.xml :tgt=testxmlload:xmltag=data:xmldump`
 
 [start=3]
@@ -677,14 +677,14 @@ TIP: `xmltag=data` means odb  will load data from the element nodes. For more in
 ```
 
 [start=2]
-. Suppose you have a xml file where data is stored in attribute nodes like the following.
+. Suppose you have a XML file where data is stored in attribute nodes like the following.
 ```
 -bash-4.1$ cat test.xml
 <?xml version="1.0" encoding="UTF-8"?>
 <data id="1" name="hello"></data>
 ```
 
-TIP: To check what will be loaded before loading xml file into table, run the following command.
+TIP: To check what will be loaded before loading XML file into table, run the following command.
 `./odb64luo -l src=test.xml:tgt=testxmlload:xmltag=data:xmldump`
 
 [start=3]