<?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>Cenango Blog &#187; mysql</title>
	<atom:link href="http://www.cenango.com/blog/tag/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cenango.com/blog</link>
	<description>Web Design, E-commerce, and Online Marketing and SEO services in Broward and Miami, Florida</description>
	<lastBuildDate>Fri, 02 Sep 2011 08:47:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Backup All Databases From MySQL Server</title>
		<link>http://www.cenango.com/blog/2010/07/backup-all-databases-from-mysql-server/</link>
		<comments>http://www.cenango.com/blog/2010/07/backup-all-databases-from-mysql-server/#comments</comments>
		<pubDate>Sun, 25 Jul 2010 06:01:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.cenango.com/blog/?p=304</guid>
		<description><![CDATA[Its always good to keep your MySQL server backed up regularly. However if you need to backup the entire server with all databases at once here is what you do $ mysqldump --all-databases -p &#124; bzip2 -c &#62; databasebackup.sql.bz2 Enter password: This will save a bz2 file with all the databases. To restore the databases [...]]]></description>
			<content:encoded><![CDATA[<p>Its always good to keep your MySQL server backed up regularly.</p>
<p>However if you need to backup the entire server with all databases at once here is what you do</p>
<pre>$ <strong>mysqldump --all-databases -p | bzip2 -c &gt; databasebackup.sql.bz2</strong>
Enter password:</pre>
<p>This will save a bz2 file with all the databases.</p>
<p>To restore the databases back use the following (take care not to restore it to a server with the same table names &#8211; it may corrupt your data)</p>
<pre><strong>$ mysql -p &lt; databasebackup.sql</strong>
Enter password:</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.cenango.com/blog/2010/07/backup-all-databases-from-mysql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

