bug #1126156, export options and FAQ
This commit is contained in:
parent
fcd2180686
commit
722e515453
@ -8,6 +8,8 @@ $Source$
|
||||
2005-03-02 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* main.php: bug #1154307, wrong text for alt,
|
||||
thanks to Isaac Bennetch - ibennetch
|
||||
* Documentation.html: bug #1126156, FAQ 6.12 reworked,
|
||||
thanks to Isaac Bennetch - ibennetch
|
||||
|
||||
2005-03-01 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* Documentation.html: bug #1153684, wrong doc for PDF pages generation,
|
||||
|
||||
@ -3538,18 +3538,34 @@ To create a new, empty mimetype please see libraries/transformations/template_ge
|
||||
<h4>
|
||||
[6.12] I want to understand some Export options.
|
||||
</h4>
|
||||
<p>
|
||||
"Complete inserts" adds the column names on every INSERT command,
|
||||
for better documentation (but resulting file is bigger).<br />
|
||||
"Extended inserts" provides a shorter dump file by using only
|
||||
once the INSERT verb and the table name.<br />
|
||||
"Enclose table and field names with backquotes" ensures that
|
||||
field and table names formed with special characters are protected.<br />
|
||||
"Add AUTO_INCREMENT value" ensures, that AUTO_INCREMENT value
|
||||
(if any) will be included in backup.<br />
|
||||
"Add into comments" includes column comments, relations and MIME
|
||||
types set in the PMA-DB in the dump as SQL comments (<i>/* xxx */</i>).<br />
|
||||
</p>
|
||||
<p><b>Structure:</b></p>
|
||||
<ul>
|
||||
<li>"Add DROP TABLE" will add a line telling MySQL to
|
||||
<a href="http://dev.mysql.com/doc/mysql/en/drop-table.html">drop the table</a>,
|
||||
if it already exists during the import. It does NOT drop the table after
|
||||
your export, it only affects the import file.</li>
|
||||
<li>"If Not Exists" will only create the table if it doesn't exist. Otherwise,
|
||||
you may get an error if the table name exists but has a different structure.</li>
|
||||
<li>"Add AUTO_INCREMENT value" ensures that AUTO_INCREMENT value
|
||||
(if any) will be included in backup.</li>
|
||||
<li>"Enclose table and field names with backquotes" ensures that
|
||||
field and table names formed with special characters are protected.</li>
|
||||
<li>"Add into comments" includes column comments, relations, and MIME
|
||||
types set in the pmadb in the dump as SQL comments (<i>/* xxx */</i>).</li>
|
||||
</ul>
|
||||
<p><b>Data:</b></p>
|
||||
<ul>
|
||||
<li>"Complete inserts" adds the column names on every INSERT command,
|
||||
for better documentation (but resulting file is bigger).</li>
|
||||
<li>"Extended inserts" provides a shorter dump file by using only
|
||||
once the INSERT verb and the table name.</li>
|
||||
<li>"Delayed inserts" are best explained in the
|
||||
<a href="http://dev.mysql.com/doc/mysql/en/insert-delayed.html">MySQL manual</a>.</li>
|
||||
<li>"Ignore inserts" treats errors as a warning instead. Again, more info
|
||||
is provided in the <a href="http://dev.mysql.com/doc/mysql/en/insert.html">MySQL
|
||||
manual</a>, but basically with this selected, invalid values are adjusted and inserted
|
||||
rather than causing the entire statement to fail.</li>
|
||||
</ul>
|
||||
|
||||
<h4>
|
||||
[6.13] I would like to create a database with a dot in its name.
|
||||
|
||||
Loading…
Reference in New Issue
Block a user