<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0" xml:base="http://mysqlhow2.com//" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>MySQL How 2</title>
 <link>http://mysqlhow2.com//</link>
 <description>Mysql tips and tricks</description>
 <language>en</language>
 <copyright>Powered by mysqlhow2.com 2001, 2005 MySQL How 2</copyright>
 <managingEditor>mysql_dba@cox.net(Lee Thompson)</managingEditor>
 <webMaster>mysql_dba@cox.net(Lee Thompson)</webMaster>
 <docs>http://blogs.law.harvard.edu/tech/rss</docs>
 <ttl>60</ttl>
 <lastBuildDate>Sat, 22 Nov 2008 06:26:31 GMT</lastBuildDate>
 <pubDate>Sat, 22 Nov 2008 06:26:31 GMT</pubDate>
 <image>
  <url>http://mysqlhow2.com/templates/AcidTech/images/logo_mid.gif</url>
  <title>MySQL How 2</title>
  <link>http://mysqlhow2.com//</link>
 </image>
  <item>
  <title>test</title>
  <link>http://mysqlhow2.com/viewtopic.php?p=86#86</link>
  <description>ttter</description>
  <category>Welcome</category>
  <comments>http://mysqlhow2.com//posting.php?mode=reply&amp;t=74</comments>
  <dc:creator>lthompson</dc:creator>
  <pubDate>Tue, 23 Sep 2008 20:12:23 GMT</pubDate>
  <guid isPermaLink="true">http://mysqlhow2.com/viewtopic.php?p=86#86</guid>
 </item>
  <item>
  <title>RE: Test podcast</title>
  <link>http://mysqlhow2.com/viewtopic.php?p=85#85</link>
  <description>asdfasdfasdf</description>
  <category>Welcome</category>
  <comments>http://mysqlhow2.com//posting.php?mode=reply&amp;t=57</comments>
  <dc:creator>lthompson</dc:creator>
  <pubDate>Tue, 23 Sep 2008 20:11:43 GMT</pubDate>
  <guid isPermaLink="true">http://mysqlhow2.com/viewtopic.php?p=85#85</guid>
 </item>
  <item>
  <title>RE: Test podcast</title>
  <link>http://mysqlhow2.com/viewtopic.php?p=84#84</link>
  <description>test</description>
  <category>Welcome</category>
  <comments>http://mysqlhow2.com//posting.php?mode=reply&amp;t=57</comments>
  <dc:creator>lthompson</dc:creator>
  <pubDate>Wed, 27 Aug 2008 19:25:36 GMT</pubDate>
  <guid isPermaLink="true">http://mysqlhow2.com/viewtopic.php?p=84#84</guid>
 </item>
  <item>
  <title>What is asyncronous?</title>
  <link>http://mysqlhow2.com/viewtopic.php?p=82#82</link>
  <description>&lt;span style=&quot;text-decoration: underline&quot;&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;Asyncronous and Syncronous&lt;/span&gt;&lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;img src=&quot;http://mysqlhow2.com//images/postimages/asyncronous.jpg&quot; /&gt;
&lt;br /&gt;

&lt;br /&gt;
Not synchronized; that is, not occurring at predetermined or regular intervals. The term asynchronous is usually used to describe communications in which data can be transmitted intermittently rather than in a steady stream. For example, a telephone conversation is asynchronous because both parties can talk whenever they like. If the communication were synchronous, each party would be required to wait a specified interval before speaking. 
&lt;br /&gt;

&lt;br /&gt;
The difficulty with asynchronous communications is that the receiver must have a way to distinguish between valid data and noise. In computer communications, this is usually accomplished through a special start bit and stop bit at the beginning and end of each piece of data. For this reason, asynchronous communication is sometimes called start-stop transmission. 
&lt;br /&gt;
Most communications between computers and devices are asynchronous</description>
  <category>Miscellaneous</category>
  <comments>http://mysqlhow2.com//posting.php?mode=reply&amp;t=72</comments>
  <dc:creator>lthompson</dc:creator>
  <pubDate>Fri, 06 Jun 2008 03:22:27 GMT</pubDate>
  <guid isPermaLink="true">http://mysqlhow2.com/viewtopic.php?p=82#82</guid>
 </item>
  <item>
  <title>Features of mysqldump and SELECT INTO OUTFILE</title>
  <link>http://mysqlhow2.com/viewtopic.php?p=81#81</link>
  <description>&lt;span style=&quot;font-weight: bold&quot;&gt;Differences of mysqldump and SELECT INTO OUTFILE&lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
1)	The options in mysqldump can be in any order, because they are true command-line options (that is, they are conceptually used together, but syntactically separate on the mysqldump command line). 
&lt;br /&gt;

&lt;br /&gt;
2)	 The options MUST have dashes between the words (e.g., fields-enclosed-by) when use as options with the mysqldump utility, but MUST NOT have dashes when used as options with the SELECT...INTO OUTFILE. 
&lt;br /&gt;

&lt;br /&gt;
&lt;span style=&quot;text-decoration: underline&quot;&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;mysqldump example&lt;/span&gt;&lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;&lt;span style=&quot;font-style: italic&quot;&gt;mysqldump –uroot –p –opt database_name &amp;gt; /tmp/nameofdumpfile.sql&lt;/span&gt;&lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;span style=&quot;font-style: italic&quot;&gt;* Specifying the --opt argument when backing up our database should theoretically give us the fastest possible dump for reading back into MySQL server (the &amp;quot;opt&amp;quot; stands for optimize). When we specify the --opt argument, the mysqldump utility creates a more sophisticated set of dump commands, which includes the &amp;quot;DROP TABLE IF EXISTS&amp;quot; statement to delete the table from the database if it already exists when the dump file is being used to restore the database. The dump also includes several table locking statements.&lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;&lt;span style=&quot;text-decoration: underline&quot;&gt;SELECT INTO OUTFILE example&lt;/span&gt;&lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;&lt;span style=&quot;font-style: italic&quot;&gt;(login to MySQL) mysql –uroot –p
&lt;br /&gt;
mysql&amp;gt; SELECT a,b,INTO OUTFILE '/tmp/datafile.txt' from table_name;
&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;span style=&quot;text-decoration: underline&quot;&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;mysqldump options&lt;/span&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;table align=&quot;top&quot; cellpadding=&quot;2&quot; cellspacing=&quot;0&quot; class=&quot;postbody&quot; bgcolor=&quot;black&quot; border=&quot;1&quot;&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;&lt;span style=&quot;font-size: 18px; line-height: normal&quot;&gt;Format&lt;/span&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;&lt;span style=&quot;font-size: 18px; line-height: normal&quot;&gt;Config File&lt;/span&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;&lt;span style=&quot;font-size: 18px; line-height: normal&quot;&gt;Description&lt;/span&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;&lt;span style=&quot;font-size: 18px; line-height: normal&quot;&gt;Introduction&lt;/span&gt;&lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
&lt;span style=&quot;color: blue&quot;&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_add-drop-database&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--add-drop-database&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_add-drop-database&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;add-drop-database&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Add a DROP DATABASE statement before each CREATE DATABASE  statement
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_add-drop-table&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--add-drop-table&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_add-drop-table&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;add-drop-table&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Add a DROP TABLE statement before each CREATE TABLE statement
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_add-locks&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--add-locks&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_add-locks&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;add-locks&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Surround each table dump with LOCK TABLES and UNLOCK TABLES  statements
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_all-databases&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--all-databases&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_all-databases&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;all-databases&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Dump all tables in all databases
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_allow-keywords&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--allow-keywords&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_allow-keywords&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;allow-keywords&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Allow creation of column names that are keywords
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;--all-tablespaces
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;all-tablespaces
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Adds to a table dump all SQL statements needed to create any  tablespaces used by an NDB Cluster table
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_comments&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--comments&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_comments&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;comments&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Add comments to the dump file
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_compact&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--compact&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_compact&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;compact&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Produce less verbose output
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_compatible&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--compatible=name[,name,...]&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_compatible&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;compatible&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Produce output that is more compatible with other database systems  or with older MySQL servers
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;--complete-insert
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;complete-insert
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Use complete INSERT statements that include column names
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_create-options&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--create-options&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_create-options&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;create-options&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Include all MySQL-specific table options in the CREATE TABLE  statements
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_databases&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--databases&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_databases&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;databases&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Dump several databases
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_debug&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--debug[=debug_options]&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_debug&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;debug&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Write a debugging log
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;--debug-info
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;debug-info
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Print debugging information, memory and CPU statistics when the  program exits
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;5.0.32
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_delayed-insert&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--delayed-insert&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_delayed-insert&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;delayed-insert&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Write INSERT DELAYED statements rather than INSERT statements
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_delete-master-logs&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--delete-master-logs&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_delete-master-logs&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;delete-master-logs&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;On a master replication server, delete the binary logs after  performing the dump operation
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_disable-keys&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--disable-keys&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_disable-keys&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;disable-keys&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;For each table, surround the INSERT statements with disable and  enable keys statements
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_dump-date&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--dump-date&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_dump-date&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;dump-date&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Include dump date in &amp;quot;Dump completed on&amp;quot; comment if --comments is  given
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;5.0.52
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;-E
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;events
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Dump events from the dumped databases
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_extended-insert&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--extended-insert&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_extended-insert&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;extended-insert&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Use multiple-row INSERT syntax that include several VALUES lists
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_fields&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--fields-enclosed-by=string&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_fields&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;fields-enclosed-by&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;This option is used with the -T option and has the same meaning as  the corresponding clause for LOAD DATA INFILE
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_fields&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--fields-escaped-by&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_fields&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;fields-escaped-by&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;This option is used with the -T option and has the same meaning as  the corresponding clause for LOAD DATA INFILE
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_fields&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--fields-optionally-enclosed-by=string&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_fields&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;fields-optionally-enclosed-by&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;This option is used with the -T option and has the same meaning as  the corresponding clause for LOAD DATA INFILE
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_fields&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--fields-terminated-by=string&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_fields&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;fields-terminated-by&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;This option is used with the -T option and has the same meaning as  the corresponding clause for LOAD DATA INFILE
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_first-slave&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--lock-all-tables&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_first-slave&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;first-slave&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Deprecated. Now renamed to --lock-all-tables
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_flush-logs&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--flush-logs&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_flush-logs&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;flush-logs&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Flush the MySQL server log files before starting the dump
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_flush-privileges&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--flush-privileges&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_flush-privileges&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;flush-privileges&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Emit a FLUSH PRIVILEGES statement after dumping the mysql database
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_help&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--help&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Display help message and exit
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_hex-blob&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--hex-blob&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_hex-blob&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;hex-blob&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Dump binary columns using hexadecimal notation (for example, 'abc'  becomes 0x616263)
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_ignore-table&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--ignore-table=db_name.tbl_name&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_ignore-table&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;ignore-table&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Do not dump the given table
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_insert-ignore&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--insert-ignore&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_insert-ignore&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;insert-ignore&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Write INSERT statements with the IGNORE option
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_lines-terminated-by&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--lines-terminated-by=string&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_lines-terminated-by&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;lines-terminated-by&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;This option is used with the -T option and has the same meaning as  the corresponding clause for LOAD DATA INFILE
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_lock-all-tables&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--lock-all-tables&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_lock-all-tables&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;lock-all-tables&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Lock all tables across all databases
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_lock-tables&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--lock-tables&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_lock-tables&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;lock-tables&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Lock all tables before dumping them
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_log-error&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--log-error=file_name&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_log-error&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;log-error&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Append warnings and errors to the named file
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;5.0.42
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_master-data&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--master-data[=value]&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_master-data&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;master-data&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Write the binary log filename and position to the output
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;--max_allowed_packet=value
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;max_allowed_packet
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;The maximum packet length to send to or receive from the server
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_net_buffer_length&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--net_buffer_length=value&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_net_buffer_length&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;net_buffer_length&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;The buffer size for TCP/IP and socket communication
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_no-autocommit&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--no-autocommit&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_no-autocommit&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;no-autocommit&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Enclose the INSERT statements for each dumped table within SET  AUTOCOMMIT=0 and COMMIT statements
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_no-create-db&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--no-create-db&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_no-create-db&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;no-create-db&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;This option suppresses the CREATE DATABASE statements
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_no-create-info&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--no-create-info&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_no-create-info&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;no-create-info&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Do not write CREATE TABLE statements that re-create each dumped  table
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_no-data&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--no-data&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_no-data&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;no-data&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Do not write any table row information   (that is, do not dump table contents)
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;--no-set-names
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;no-set-names
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Turn off complete-insert
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_opt&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--opt&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_opt&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;opt&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;This option is shorthand; it is the same as specifying  --add-drop-table --add-locks --create-options --disable-keys  --extended-insert --lock-tables --quick --set-charset.
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_order-by-primary&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--order-by-primary&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_order-by-primary&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;order-by-primary&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Sorts each table's rows by its primary key, or by its first unique  index
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_quick&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--quick&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_quick&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;quick&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Retrieve rows for a table from the server a row at a time
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_quote-names&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--quote-names&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_quote-names&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;quote-names&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Quote database, table, and column names within backtick characters
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;--replace
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;replace
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Write REPLACE statements rather than INSERT statements
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_result-file&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--result-file=file&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_result-file&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;result-file&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Direct output to a given file
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_routines&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;-R&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_routines&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;routines&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Dump stored routines (functions and procedures) from the dumped  databases
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_set-charset&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--set-charset&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_set-charset&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;set-charset&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Add SET NAMES default_character_set to the output
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_single-transaction&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--single-transaction&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_single-transaction&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;single-transaction&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;This option issues a BEGIN SQL statement before dumping data from  the server
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;--skip-add-drop-table
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;skip-add-drop-table
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Do not add
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;--skip-add-locks
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;skip-add-locks
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Do not add locks
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_skip-comments&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--skip-comments&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_skip-comments&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;skip-comments&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Do not add comments to the dump file
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;--skip-compact
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;skip-compact
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Turn off compact
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;--skip-disable-keys
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;skip-disable-keys
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Do not disable keys
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;--skip-extended-insert
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;skip-extended-insert
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Turn off extended-insert
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_skip-opt&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--skip-opt&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_skip-opt&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;skip-opt&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Turn off the options set by opt
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;--skip-quick
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;skip-quick
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Do not retrieve rows for a table from the server a row at a time
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;--skip-quote-names
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;skip-quote-names
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Turn off quote names
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;-skip-set-charset
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;skip-set-charset
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Suppress the SET NAMES statement
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;--skip-triggers
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;skip-triggers
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Turn off triggers
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;5.0.11
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;--skip-tz-utc
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;skip-tz-utc
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Turn off tz-utc
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_ssl&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--ssl-ca=file_name&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_ssl&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;ssl-ca&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;The path to a file that contains a list of trusted SSL CAs
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_ssl&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--ssl-capath=directory_name&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_ssl&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;ssl-capath&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;The path to a directory that contains trusted SSL CA certificates  in PEM format
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_ssl&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--ssl-cert=file_name&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_ssl&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;ssl-cert&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;The name of the SSL certificate file to use for establishing a  secure connection
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_ssl&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--ssl-cipher=cipher_list&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_ssl&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;ssl-cipher&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;A list of allowable ciphers to use for SSL encryption
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_ssl&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--ssl-key=file_name&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_ssl&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;ssl-key&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;The name of the SSL key file to use for establishing a secure  connection
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_ssl&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--ssl-verify-server-cert&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_ssl&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;ssl-verify-server-cert&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;The server's Common Name value in its certificate is verified  against the hostname used when connecting to the server
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_tab&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--tab=path&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_tab&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;tab&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Produce tab-separated data files
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_tables&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--tables&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_tables&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;tables&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Override the --databases or -B option
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;--triggers
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;triggers
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Dump triggers for each dumped table
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_tz-utc&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--tz-utc&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_tz-utc&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;tz-utc&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Add SET TIME_ZONE='+00:00' to the dump file
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_verbose&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--verbose&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Verbose mode
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_version&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--version&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Display version information and exit
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_where&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--where='where_condition'&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_where&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;where&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Dump only rows selected by the given WHERE condition
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_xml&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;--xml&lt;/a&gt;
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html#option_mysqldump_xml&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;xml&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;td&gt;Produce XML output
&lt;br /&gt;
&lt;/td&gt;&lt;td&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;span style=&quot;font-style: italic&quot;&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;Select into outfile options&lt;/span&gt;&lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
The FIELDS TERMINATED BY, ENCLOSED BY, ESCAPED BY, or LINES TERMINATED BY characters must be escaped so that you can read the file back in reliably. ASCII NUL is escaped to make it easier to view with some pagers.
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;&lt;span style=&quot;font-style: italic&quot;&gt;
&lt;br /&gt;
**Another way to get data if you do not have the proper “file” permissions**
&lt;br /&gt;

&lt;br /&gt;
mysql –uuser –p -e &amp;quot;SELECT * from databasename.tablename &amp;gt; file_name
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;</description>
  <category>SQL Syntax</category>
  <comments>http://mysqlhow2.com//posting.php?mode=reply&amp;t=71</comments>
  <dc:creator>lthompson</dc:creator>
  <pubDate>Fri, 06 Jun 2008 01:59:46 GMT</pubDate>
  <guid isPermaLink="true">http://mysqlhow2.com/viewtopic.php?p=81#81</guid>
 </item>
  <item>
  <title>MySQL Show commands</title>
  <link>http://mysqlhow2.com/viewtopic.php?p=83#83</link>
  <description>&lt;span style=&quot;text-decoration: underline&quot;&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;SHOW Syntax&lt;/span&gt;&lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
&lt;center&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; align=&quot;center&quot; class=&quot;bodyline&quot;&gt;&lt;tr&gt;		&lt;td class=&quot;helpline&quot;&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;script type=&quot;text/javascript&quot; src=&quot;./templates/select_expand_bbcodes.js&quot;&gt;&lt;/script&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--	var id = 'SXBB' + (1000 + Math.floor(Math.random() * 5000));	SXBB[id] = new _SXBB(id);	SXBB[id].T['select'] = 'Select';	SXBB[id].T['expand'] = 'Expand';	SXBB[id].T['contract'] = 'Contract';	SXBB[id].writeCmd();//--&gt;&lt;/script&gt;		&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--	SXBB[id].writeDiv();//--&gt;&lt;/script&gt;
&lt;br /&gt;
&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/show-character-set.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt; SHOW CHARACTER SET&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/show-collation.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt; SHOW COLLATION&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/show-columns.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt; SHOW COLUMNS&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/show-create-database.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt; SHOW CREATE DATABASE&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/show-create-procedure.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt; SHOW CREATE PROCEDURE&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/show-create-table.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt; SHOW CREATE TABLE&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/show-create-view.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt; SHOW CREATE VIEW&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/show-databases.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt; SHOW DATABASES&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/show-engine.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt; SHOW ENGINE&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/show-engines.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt; SHOW ENGINES&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/show-errors.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt; SHOW ERRORS&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/show-grants.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt; SHOW GRANTS&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/show-index.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt; SHOW INDEX&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/show-innodb-status.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt; SHOW INNODB STATUS&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/show-logs.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt; SHOW LOGS&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/show-mutex-status.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt; SHOW MUTEX STATUS&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/show-open-tables.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt; SHOW OPEN TABLES&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/show-privileges.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt; SHOW PRIVILEGES&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/show-procedure-code.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt; SHOW PROCEDURE CODE SHOW FUNCTION CODE&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/show-procedure-status.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt; SHOW PROCEDURE STATUS and SHOW FUNCTION STATUS&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/show-processlist.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt; SHOW PROCESSLIST&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/show-profiles.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt; SHOW PROFILES and SHOW PROFILE&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/show-status.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt; SHOW STATUS&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/show-table-status.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;SHOW TABLE STATUS&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/show-tables.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt; SHOW TABLES&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/show-triggers.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt; SHOW TRIGGERS&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/show-variables.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt; SHOW VARIABLES&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/show-warnings.html&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt; SHOW WARNINGS&lt;/a&gt;
&lt;br /&gt;
&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--	document.write('&lt;/div&gt;');//--&gt;&lt;/script&gt;		&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/center&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;span style=&quot;font-style: italic&quot;&gt;SHOW has many forms that provide information about databases, tables, columns, or status information about the server. This section describes those following: &lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;center&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; align=&quot;center&quot; class=&quot;bodyline&quot;&gt;&lt;tr&gt;		&lt;td class=&quot;helpline&quot;&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;script type=&quot;text/javascript&quot; src=&quot;./templates/select_expand_bbcodes.js&quot;&gt;&lt;/script&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--	var id = 'SXBB' + (1000 + Math.floor(Math.random() * 5000));	SXBB[id] = new _SXBB(id);	SXBB[id].T['select'] = 'Select';	SXBB[id].T['expand'] = 'Expand';	SXBB[id].T['contract'] = 'Contract';	SXBB[id].writeCmd();//--&gt;&lt;/script&gt;		&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--	SXBB[id].writeDiv();//--&gt;&lt;/script&gt;
&lt;br /&gt;
SHOW CHARACTER SET [like_or_where]
&lt;br /&gt;
SHOW COLLATION [like_or_where]
&lt;br /&gt;
SHOW [FULL] COLUMNS FROM tbl_name [FROM db_name] [like_or_where]
&lt;br /&gt;
SHOW CREATE DATABASE db_name
&lt;br /&gt;
SHOW CREATE FUNCTION funcname
&lt;br /&gt;
SHOW CREATE PROCEDURE procname
&lt;br /&gt;
SHOW CREATE TABLE tbl_name
&lt;br /&gt;
SHOW DATABASES [like_or_where]
&lt;br /&gt;
SHOW ENGINE engine_name {LOGS | STATUS }
&lt;br /&gt;
SHOW [STORAGE] ENGINES
&lt;br /&gt;
SHOW ERRORS [LIMIT [offset,] row_count]
&lt;br /&gt;
SHOW FUNCTION CODE sp_name
&lt;br /&gt;
SHOW FUNCTION STATUS [like_or_where]
&lt;br /&gt;
SHOW GRANTS FOR user
&lt;br /&gt;
SHOW INDEX FROM tbl_name [FROM db_name]
&lt;br /&gt;
SHOW INNODB STATUS
&lt;br /&gt;
SHOW PROCEDURE CODE sp_name
&lt;br /&gt;
SHOW PROCEDURE STATUS [like_or_where]
&lt;br /&gt;
SHOW [BDB] LOGS
&lt;br /&gt;
SHOW MUTEX STATUS
&lt;br /&gt;
SHOW OPEN TABLES [FROM db_name] [like_or_where]
&lt;br /&gt;
SHOW PRIVILEGES
&lt;br /&gt;
SHOW [FULL] PROCESSLIST
&lt;br /&gt;
SHOW PROFILE [types] [FOR QUERY n] [OFFSET n] [LIMIT n]
&lt;br /&gt;
SHOW PROFILES
&lt;br /&gt;
SHOW [GLOBAL | SESSION] STATUS [like_or_where]
&lt;br /&gt;
SHOW TABLE STATUS [FROM db_name] [like_or_where]
&lt;br /&gt;
SHOW TABLES [FROM db_name] [like_or_where]
&lt;br /&gt;
SHOW TRIGGERS [FROM db_name] [like_or_where]
&lt;br /&gt;
SHOW [GLOBAL | SESSION] VARIABLES [like_or_where]
&lt;br /&gt;
SHOW WARNINGS [LIMIT [offset,] row_count]
&lt;br /&gt;

&lt;br /&gt;
like_or_where:
&lt;br /&gt;
    LIKE 'pattern'
&lt;br /&gt;
  | WHERE expr
&lt;br /&gt;

&lt;br /&gt;
&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--	document.write('&lt;/div&gt;');//--&gt;&lt;/script&gt;		&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/center&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;span style=&quot;font-style: italic&quot;&gt;If the syntax for a given SHOW statement includes a LIKE 'pattern' part, 'pattern' is a string that can contain the SQL “%” and “_” wildcard characters. The pattern is useful for restricting statement output to matching values. &lt;/span&gt;</description>
  <category>SQL Syntax</category>
  <comments>http://mysqlhow2.com//posting.php?mode=reply&amp;t=73</comments>
  <dc:creator>lthompson</dc:creator>
  <pubDate>Fri, 06 Jun 2008 01:55:44 GMT</pubDate>
  <guid isPermaLink="true">http://mysqlhow2.com/viewtopic.php?p=83#83</guid>
 </item>
  <item>
  <title>What is ACID</title>
  <link>http://mysqlhow2.com/viewtopic.php?p=80#80</link>
  <description>ACID (an acronymn for Atomicity Consistency Isolation Durability) is a 'keyword' that business professionals generally look for when evaluating databases. Here is a quick description of what it means to be ACID compliant: 
&lt;br /&gt;

&lt;br /&gt;
1.	&lt;span style=&quot;color: Cyan&quot;&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;Atomicity is an all-or-none proposition.&lt;/span&gt;&lt;/span&gt; Suppose you define a transaction that contains an UPDATE, an INSERT, and a DELETE statement. With atomicity, these statements are treated as a single unit, and thanks to consistency (the C in ACID) there are only two possible outcomes: either they all change the database or none of them do. This is important in situations like bank transactions where transferring money between accounts could result in disaster if the server were to go down after a DELETE statement but before the corresponding INSERT statement. 
&lt;br /&gt;

&lt;br /&gt;
2.	&lt;span style=&quot;color: cyan&quot;&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;Consistency guarantees that a transaction never leaves your database in a half-finished state&lt;/span&gt;.&lt;/span&gt; If one part of the transaction fails, all of the pending changes are rolled back, leaving the database as it was before you initiated the transaction. For instance, when you delete a customer record, you should also delete all of that customer's records from associated tables (such as invoices and line items). A properly configured database wouldn't let you delete the customer record, if that meant leaving its invoices, and other associated records stranded. 
&lt;br /&gt;

&lt;br /&gt;
3.	&lt;span style=&quot;color: cyan&quot;&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;Isolation keeps transactions separated from each other until they're finished.&lt;/span&gt;&lt;/span&gt; Transaction isolation is generally configurable in a variety of modes. For example, in one mode, a transaction blocks until the other transaction finishes. In a different mode, a transaction sees obsolete data (from the state the database was in before the previous transaction started). Suppose a user deletes a customer, and before the customer's invoices are deleted, a second user updates one of those invoices. In a blocking transaction scenario, the second user would have to wait for the first user's deletions to complete before issuing the update. The second user would then find out that the customer had been deleted, which is much better than losing changes without knowing about it. 
&lt;br /&gt;

&lt;br /&gt;
4.	&lt;span style=&quot;color: Cyan&quot;&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;Durability guarantees that the database will keep track of pending changes in such a way that the server can recover from an abnormal termination.&lt;/span&gt;&lt;/span&gt; Hence, even if the database server is unplugged in the middle of a transaction, it will return to a consistent state when it's restarted. The database handles this by storing uncommitted transactions in a transaction log. By virtue of consistency (explained above), a partially completed transaction won't be written to the database in the event of an abnormal termination. However, when the database is restarted after such a termination, it examines the transaction log for completed transactions that had not been committed, and applies them.&lt;span style=&quot;color: darkred&quot;&gt;&lt;/span&gt;&lt;span style=&quot;color: #444444&quot;&gt;&lt;/span&gt;&lt;span style=&quot;color: cyan&quot;&gt;&lt;/span&gt;</description>
  <category>Miscellaneous</category>
  <comments>http://mysqlhow2.com//posting.php?mode=reply&amp;t=70</comments>
  <dc:creator>lthompson</dc:creator>
  <pubDate>Wed, 04 Jun 2008 15:29:34 GMT</pubDate>
  <guid isPermaLink="true">http://mysqlhow2.com/viewtopic.php?p=80#80</guid>
 </item>
  <item>
  <title>RE: Importing databases with foreign key's</title>
  <link>http://mysqlhow2.com/viewtopic.php?p=69#69</link>
  <description>I am looking for a MYSQL DBA for my project. pleae help me guy to locate one. Thanks.</description>
  <category>Errors within MySQL</category>
  <comments>http://mysqlhow2.com//posting.php?mode=reply&amp;t=35</comments>
  <dc:creator>shailya2001</dc:creator>
  <pubDate>Tue, 15 Apr 2008 16:44:10 GMT</pubDate>
  <guid isPermaLink="true">http://mysqlhow2.com/viewtopic.php?p=69#69</guid>
 </item>
  <item>
  <title>RE: Looking for MYSQL DBA</title>
  <link>http://mysqlhow2.com/viewtopic.php?p=68#68</link>
  <description>hi I may have one</description>
  <category>Questions and Answers</category>
  <comments>http://mysqlhow2.com//posting.php?mode=reply&amp;t=60</comments>
  <dc:creator>shailya2001</dc:creator>
  <pubDate>Tue, 15 Apr 2008 16:41:36 GMT</pubDate>
  <guid isPermaLink="true">http://mysqlhow2.com/viewtopic.php?p=68#68</guid>
 </item>
  <item>
  <title>Looking for MYSQL DBA</title>
  <link>http://mysqlhow2.com/viewtopic.php?p=67#67</link>
  <description>Hi Guys,
&lt;br /&gt;

&lt;br /&gt;
I am looking for MYSQL DBA, to solver some issues with my server. please help me. Thanks</description>
  <category>Questions and Answers</category>
  <comments>http://mysqlhow2.com//posting.php?mode=reply&amp;t=60</comments>
  <dc:creator>shailya2001</dc:creator>
  <pubDate>Tue, 15 Apr 2008 16:35:13 GMT</pubDate>
  <guid isPermaLink="true">http://mysqlhow2.com/viewtopic.php?p=67#67</guid>
 </item>
 </channel>
</rss>