/**
 * $Id: README,v 1.6 2003/10/02 17:42:57 myui Exp $
 */

[Infomations]

xloader.sh is a simple script to load xml files 
in specified path.

If you don't need to care for spaces, you should run with 
pgxload with option "-s".

<aaa>
	<bbb/>
	<ccc> zzz</ccc>
 </aaa>

this xml is parsed as follows, in space aware mode.
--
element "aaa"
textnode "\n\t"
element "bbb"
textnode "\n\t"
element "ccc"
textnode " zzz"
textnode "\n "

this is the serialized.
	  aaa
    / |  | \
 txt bbb txt ccc
             / \
          _zzz  txt
       
in strip_space mode.
--
element "aaa"
element "bbb"
element "ccc"
textnode " zzz"

this is the serialized.
<aaa><bbb/><ccc> zzz</ccc></aaa>

	aaa
    /  \
 bbb   ccc
 		|
 	   _zzz
 	   
A figure of th tree structure.


[recommendings]

  Before bulkloading,
  
  	(*) run "dropindex.sql"
  	(*) restart postgres with "-F" option, off "fsync" 
  		to speed up loading.
 
  After loaded,
  
  	(*) run "createindex.sql".