Additional fixes to odb User Guide
diff --git a/docs/odb_user/src/asciidoc/_chapters/load.adoc b/docs/odb_user/src/asciidoc/_chapters/load.adoc
index 8d4c0af..58a0acb 100644
--- a/docs/odb_user/src/asciidoc/_chapters/load.adoc
+++ b/docs/odb_user/src/asciidoc/_chapters/load.adoc
@@ -580,19 +580,17 @@
 
 If you have an input file containing:
 
-***
-ignoreme,*Maurizio*,xyz,_commentM_, ignore,remaining, fields
-ignoreme,*Lucia*,xyz,_commentL_, ignore, this
-ignoreme,*Giovanni*,xyz,_commentG_, ignoreme,Antonella,xyz,commentA
-***
-
-* *Bold text* represents `fname`.
-* _Italic text_ represents `comment`.
+```
+ignoreme,Maurizio,xyz,commentM, ignore,remaining, fields
+ignoreme,Lucia,xyz,commentL, ignore, this
+ignoreme,Giovanni,xyz,commentG, 
+ignoreme,Antonella,xyz,commentA
+```
 
 and a map-file like this:
 
 ```
-FNAME:1 
+FNAME:2 
 BDATE:CDATE 
 COMMENT:4
 ```
@@ -600,10 +598,27 @@
 Then:
 
 * First column (`ID`) is loaded with its default value (not in the map file)
-* Second column (`FNAME`) is loaded with the second input field from file (`FNAME:1`)
+* Second column (`FNAME`) is loaded with the second input field from file (`FNAME:2`)
 * Third column (`LNAME`) is loaded with its default value (not in the map file)
 * Fourth column (`BDATE`) is loaded with the Current Data generated by odb (`BDATE:CDATE`)
-* Fifth column (`COMMENT`) is loaded with the fifth column in the input file (`COMMENT:4`)
+* Fifth column (`COMMENT`) is loaded with the fourth column in the input file (`COMMENT:4`)
+
+When loaded, the result will look like (your results in ID and BDATE will vary):
+
+```
+>>select * from trafodion.maurizio.dtest;
+
+ID                    FNAME       LNAME       BDATE       COMMENT
+--------------------  ----------  ----------  ----------  ----------------------------------------------------------------------------------------------------
+
+                   6  Maurizio    Felici      2019-08-06  commentM                                                                                            
+                   7  Lucia       Felici      2019-08-06  commentL                                                                                            
+                   8  Giovanni    Felici      2019-08-06  commentG                                                                                            
+                   9  Antonella   Felici      2019-08-06  commentA                                                                                            
+
+--- 4 row(s) selected.
+>>
+```
 
 [[load_binary_files]]
 == Load Binary Files