<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>33dots &#187; System Administration</title>
	<atom:link href="http://www.33dots.com/index.php/category/sysadmin/feed" rel="self" type="application/rss+xml" />
	<link>http://www.33dots.com</link>
	<description></description>
	<lastBuildDate>Thu, 26 Aug 2010 09:29:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.3</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Backing up a MySQL MyISAM database using mysqldump.</title>
		<link>http://www.33dots.com/index.php/sysadmin/backing-up-a-mysql-myisam-database-using-mysqldump.html</link>
		<comments>http://www.33dots.com/index.php/sysadmin/backing-up-a-mysql-myisam-database-using-mysqldump.html#comments</comments>
		<pubDate>Fri, 23 Oct 2009 10:43:16 +0000</pubDate>
		<dc:creator>tony</dc:creator>
				<category><![CDATA[System Administration]]></category>
		<category><![CDATA[backup myisam database]]></category>
		<category><![CDATA[mysqladmin]]></category>

		<guid isPermaLink="false">http://www.33dots.com/?p=240</guid>
		<description><![CDATA[Give the command,
[tony@localhost ~]$mysqldump --opt --user=username --password=
password --host=yourMySQLHostname dbname &#62; output.sql
For bzipping it,
[tony@localhost ~]$mysqldump --opt --user=username --password=
password --host=yourMySQLHostname dbname &#124; bzip2 -c &#62; output.sql.bz2
To dump individual tables use the command,
[tony@localhost ~]$mysqldump --opt --user=username --password=
password --host=yourMySQLHostname dbname  (tablename tablename tablename) &#62; output.sql
The --opt switch is a shorthand; it is the same as specifying --add-drop-table --add-locks [...]]]></description>
			<content:encoded><![CDATA[<p>Give the command,</p>
<pre>[tony@localhost ~]$mysqldump --opt --user=username --password=
password --host=yourMySQLHostname dbname &gt; output.sql</pre>
<p>For bzipping it,</p>
<pre>[tony@localhost ~]$mysqldump --opt --user=username --password=
password --host=yourMySQLHostname dbname | bzip2 -c &gt; output.sql.bz2</pre>
<p>To dump individual tables use the command,</p>
<pre>[tony@localhost ~]$mysqldump --opt --user=username --password=
password --host=yourMySQLHostname dbname  (tablename tablename tablename) &gt; output.sql</pre>
<p>The <code>--opt</code> switch is a shorthand; it is the same as specifying <code>--add-drop-table --add-locks --create-options --disable-keys --extended-insert --lock-tables --quick --set-charset</code><br />
It should give you a fast dump operation and produce a dump file that can be reloaded into a MySQL server quickly.</p>
<p>For more information on individual options refer <code>man mysqldump</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.33dots.com/index.php/sysadmin/backing-up-a-mysql-myisam-database-using-mysqldump.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
