1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd">
<refentry id='spatialite_xml_collapse'>
<refmeta>
<refentrytitle>spatialite_xml_collapse</refentrytitle>
<manvolnum>1</manvolnum>
</refmeta>
<refnamediv>
<refname>spatialite_xml_collapse</refname>
<refpurpose>
simplify any DB-file created by
<citerefentry>
<refentrytitle>spatialite_xml_load</refentrytitle>
<manvolnum>1</manvolnum>
</citerefentry>
</refpurpose>
</refnamediv>
<refsynopsisdiv id='synopsis'>
<cmdsynopsis>
<command>spatialite_xml_collapse</command>
<arg choice='opt'><option>-h</option></arg>
<arg choice='opt'><option>-d</option> <replaceable>pathname</replaceable></arg>
<arg choice='opt'><option>-dd</option></arg>
<arg choice='opt'><option>-nl</option> <replaceable>num</replaceable></arg>
<arg choice='opt'><option>-jo</option></arg>
<arg choice='opt'><option>-cs</option> <replaceable>num</replaceable></arg>
<arg choice='opt'><option>-m</option></arg>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1 id='description'>
<title>DESCRIPTION</title>
<para>
<command>spatialite_xml_collapse</command> is intended to simplify
(by collapsing any not strictly required ramification) any DB-file
created by
<citerefentry>
<refentrytitle>spatialite_xml_load</refentrytitle>
<manvolnum>1</manvolnum>
</citerefentry>.
</para>
<para>
Collapsing a DB-file is a final irreversible operation.
</para>
</refsect1>
<refsect1 id='options'>
<title>OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>-h</option></term>
<term><option>--help</option></term>
<listitem>
<para>show help message</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-d</option> <replaceable>pathname</replaceable></term>
<term><option>--db-path</option> <replaceable>pathname</replaceable></term>
<listitem>
<para>the SpatiaLite DB path</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-dd</option></term>
<term><option>--delete-duplicates</option></term>
<listitem>
<para>remove all duplicate rows except one</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-nl</option> <replaceable>num</replaceable></term>
<term><option>--nl-level</option> <replaceable>num</replaceable></term>
<listitem>
<para>tree-level for table-names (default: 0)</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-jo</option></term>
<term><option>--journal-off</option></term>
<listitem>
<para>unsafe [but faster] mode</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-cs</option> <replaceable>num</replaceable></term>
<term><option>--cache-size</option> <replaceable>num</replaceable></term>
<listitem>
<para>DB cache size (how many pages)</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-m</option></term>
<term><option>--in-memory</option></term>
<listitem>
<para>using IN-MEMORY database</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
</refentry>
|