<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: 10 Ways to Automatically &amp; Manually Backup MySQL Database</title>
	<atom:link href="http://www.noupe.com/how-tos/10-ways-to-automatically-manually-backup-mysql-database.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.noupe.com/how-tos/10-ways-to-automatically-manually-backup-mysql-database.html</link>
	<description>The Curious Side of Smashing Magazine</description>
	<lastBuildDate>Sun, 12 Feb 2012 09:18:26 +0100</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: smithy</title>
		<link>http://www.noupe.com/how-tos/10-ways-to-automatically-manually-backup-mysql-database.html/comment-page-1#comment-1703196</link>
		<dc:creator>smithy</dc:creator>
		<pubDate>Sat, 11 Feb 2012 22:35:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.noupe.com/?p=9464#comment-1703196</guid>
		<description>does anyone know how to backup changes to the database say once per hour or even better whenever a certain table is updated ie an order?</description>
		<content:encoded><![CDATA[<p>does anyone know how to backup changes to the database say once per hour or even better whenever a certain table is updated ie an order?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zahid.Pakistan</title>
		<link>http://www.noupe.com/how-tos/10-ways-to-automatically-manually-backup-mysql-database.html/comment-page-1#comment-1701747</link>
		<dc:creator>Zahid.Pakistan</dc:creator>
		<pubDate>Fri, 03 Feb 2012 14:21:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.noupe.com/?p=9464#comment-1701747</guid>
		<description>I needed a little variant for mysql data dump with single line inserts and no comments and no db create statement. Finally, the following command worked well:

root mysqldump --skip-extended-insert --skip-comments  --no-create-info  --no-create-db -u root -pgeoware123 iom3_00_04 &gt; /mnt/pcpi/iom3_00_04_data_`date +%m%d%y`.sql

for mysql 5.1 and higher. Hope it helps</description>
		<content:encoded><![CDATA[<p>I needed a little variant for mysql data dump with single line inserts and no comments and no db create statement. Finally, the following command worked well:</p>
<p>root mysqldump &#8211;skip-extended-insert &#8211;skip-comments  &#8211;no-create-info  &#8211;no-create-db -u root -pgeoware123 iom3_00_04 &gt; /mnt/pcpi/iom3_00_04_data_`date +%m%d%y`.sql</p>
<p>for mysql 5.1 and higher. Hope it helps</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Benson</title>
		<link>http://www.noupe.com/how-tos/10-ways-to-automatically-manually-backup-mysql-database.html/comment-page-1#comment-1699104</link>
		<dc:creator>Benson</dc:creator>
		<pubDate>Wed, 18 Jan 2012 07:59:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.noupe.com/?p=9464#comment-1699104</guid>
		<description>most way to backup need root privilege.
Way 6, using php to write a file, don&#039;t work.</description>
		<content:encoded><![CDATA[<p>most way to backup need root privilege.<br />
Way 6, using php to write a file, don&#8217;t work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Polinux</title>
		<link>http://www.noupe.com/how-tos/10-ways-to-automatically-manually-backup-mysql-database.html/comment-page-1#comment-1457728</link>
		<dc:creator>Polinux</dc:creator>
		<pubDate>Fri, 04 Nov 2011 09:43:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.noupe.com/?p=9464#comment-1457728</guid>
		<description>1 one should be like that

15 2 * * * root mysqldump -u root -pPASSWORD --all-databases &#124; gzip &gt; /mnt/disk2/database_`date +%m-%d-%Y`.sql.gz</description>
		<content:encoded><![CDATA[<p>1 one should be like that</p>
<p>15 2 * * * root mysqldump -u root -pPASSWORD &#8211;all-databases | gzip &gt; /mnt/disk2/database_`date +%m-%d-%Y`.sql.gz</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kimberly</title>
		<link>http://www.noupe.com/how-tos/10-ways-to-automatically-manually-backup-mysql-database.html/comment-page-1#comment-1430195</link>
		<dc:creator>Kimberly</dc:creator>
		<pubDate>Mon, 31 Oct 2011 15:20:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.noupe.com/?p=9464#comment-1430195</guid>
		<description>Nice tips!
I will try some of them to backup my MySQL.</description>
		<content:encoded><![CDATA[<p>Nice tips!<br />
I will try some of them to backup my MySQL.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alejandro Arauz</title>
		<link>http://www.noupe.com/how-tos/10-ways-to-automatically-manually-backup-mysql-database.html/comment-page-1#comment-1317144</link>
		<dc:creator>Alejandro Arauz</dc:creator>
		<pubDate>Mon, 10 Oct 2011 16:10:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.noupe.com/?p=9464#comment-1317144</guid>
		<description>The article has some good information but it would be better if you mention some tools too, running scripts and creating scheduled tasks manually can be complicated when managing several databases.
I would recommend MySqlBackupFTP (http://mysqlbackupftp.com/) . It is very simple to use and it has a free version that allows you to create scheduled backups.
This tool also has the option to export the backup to an FTP server so you don&#039;t need to run a separate script.</description>
		<content:encoded><![CDATA[<p>The article has some good information but it would be better if you mention some tools too, running scripts and creating scheduled tasks manually can be complicated when managing several databases.<br />
I would recommend MySqlBackupFTP (<a href="http://mysqlbackupftp.com/" rel="nofollow">http://mysqlbackupftp.com/</a>) . It is very simple to use and it has a free version that allows you to create scheduled backups.<br />
This tool also has the option to export the backup to an FTP server so you don&#8217;t need to run a separate script.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

