<?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: MySQL backups using mysqldump</title>
	<atom:link href="http://crazytoon.com/2007/01/23/mysql-backups-using-mysqldump/feed/" rel="self" type="application/rss+xml" />
	<link>http://crazytoon.com/2007/01/23/mysql-backups-using-mysqldump/</link>
	<description>Enterprise level solutions, LAMP, Linux, Apache, MySQL, PHP, Perl, Windows, Cache, Optimization</description>
	<lastBuildDate>Mon, 16 Apr 2012 22:54:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: thiyagi</title>
		<link>http://crazytoon.com/2007/01/23/mysql-backups-using-mysqldump/comment-page-1/#comment-1000</link>
		<dc:creator>thiyagi</dc:creator>
		<pubDate>Wed, 09 Mar 2011 12:45:21 +0000</pubDate>
		<guid isPermaLink="false">http://crazytoon.com/2007/01/23/mysql-backups-using-mysqldump/#comment-1000</guid>
		<description>thanks for all the tips about the mysqldump..</description>
		<content:encoded><![CDATA[<p>thanks for all the tips about the mysqldump..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zerd</title>
		<link>http://crazytoon.com/2007/01/23/mysql-backups-using-mysqldump/comment-page-1/#comment-729</link>
		<dc:creator>Zerd</dc:creator>
		<pubDate>Thu, 03 Jul 2008 08:17:16 +0000</pubDate>
		<guid isPermaLink="false">http://crazytoon.com/2007/01/23/mysql-backups-using-mysqldump/#comment-729</guid>
		<description>Sure you don&#039;t want to use a pipe? Saves space and time.

/usr/local/mysql/bin/mysqldump -R -q –single-transaction –databases dbname1 dbname2 -ppassword &#124; gzip -q -9 - &gt; ${BACKUP_DIR}mysql/$HOST$DATE.new.sql.gz
rm ${BACKUP_DIR}mysql/$HOST$DATE.sql.gz &gt; /dev/null 2&gt;&amp;1
mv ${BACKUP_DIR}mysql/$HOST$DATE.new.sql ${BACKUP_DIR}mysql/$HOST$DATE.sql.gz</description>
		<content:encoded><![CDATA[<p>Sure you don&#8217;t want to use a pipe? Saves space and time.</p>
<p>/usr/local/mysql/bin/mysqldump -R -q –single-transaction –databases dbname1 dbname2 -ppassword | gzip -q -9 &#8211; &gt; ${BACKUP_DIR}mysql/$HOST$DATE.new.sql.gz<br />
rm ${BACKUP_DIR}mysql/$HOST$DATE.sql.gz &gt; /dev/null 2&gt;&amp;1<br />
mv ${BACKUP_DIR}mysql/$HOST$DATE.new.sql ${BACKUP_DIR}mysql/$HOST$DATE.sql.gz</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MySQL: How do I dump all tables in a database into separate files? &#124; Technology: Learn and Share</title>
		<link>http://crazytoon.com/2007/01/23/mysql-backups-using-mysqldump/comment-page-1/#comment-525</link>
		<dc:creator>MySQL: How do I dump all tables in a database into separate files? &#124; Technology: Learn and Share</dc:creator>
		<pubDate>Tue, 27 Nov 2007 00:23:56 +0000</pubDate>
		<guid isPermaLink="false">http://crazytoon.com/2007/01/23/mysql-backups-using-mysqldump/#comment-525</guid>
		<description>[...] MySQL backups using mysqldump [...]</description>
		<content:encoded><![CDATA[<p>[...] MySQL backups using mysqldump [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://crazytoon.com/2007/01/23/mysql-backups-using-mysqldump/comment-page-1/#comment-523</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Sun, 25 Nov 2007 05:37:02 +0000</pubDate>
		<guid isPermaLink="false">http://crazytoon.com/2007/01/23/mysql-backups-using-mysqldump/#comment-523</guid>
		<description>I use the CMS PHP-Fusion on my current website. It has an old version of PHP.  I am trying to move my database to my new host which has PHP 5.

I am getting the following error...

Error at the line 27: ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=83 ;

Query: CREATE TABLE `fusion_admin` (
`admin_id` tinyint(2) unsigned NOT NULL auto_increment,
`admin_rights` char(2) NOT NULL default &#039;&#039;,
`admin_image` varchar(50) NOT NULL default &#039;&#039;,
`admin_title` varchar(50) NOT NULL default &#039;&#039;,
`admin_link` varchar(100) NOT NULL default &#039;reserved&#039;,
`admin_page` tinyint(1) unsigned NOT NULL default &#039;1&#039;,
PRIMARY KEY (`admin_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=83 ;


MySQL: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near &#039;ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=83&#039; at line


Since I do not know squat about databases etc...is there any quick answer of fix to this situation. I have no idea what this means.</description>
		<content:encoded><![CDATA[<p>I use the CMS PHP-Fusion on my current website. It has an old version of PHP.  I am trying to move my database to my new host which has PHP 5.</p>
<p>I am getting the following error&#8230;</p>
<p>Error at the line 27: ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=83 ;</p>
<p>Query: CREATE TABLE `fusion_admin` (<br />
`admin_id` tinyint(2) unsigned NOT NULL auto_increment,<br />
`admin_rights` char(2) NOT NULL default &#8221;,<br />
`admin_image` varchar(50) NOT NULL default &#8221;,<br />
`admin_title` varchar(50) NOT NULL default &#8221;,<br />
`admin_link` varchar(100) NOT NULL default &#8216;reserved&#8217;,<br />
`admin_page` tinyint(1) unsigned NOT NULL default &#8216;1&#8242;,<br />
PRIMARY KEY (`admin_id`)<br />
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=83 ;</p>
<p>MySQL: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near &#8216;ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=83&#8242; at line</p>
<p>Since I do not know squat about databases etc&#8230;is there any quick answer of fix to this situation. I have no idea what this means.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil</title>
		<link>http://crazytoon.com/2007/01/23/mysql-backups-using-mysqldump/comment-page-1/#comment-508</link>
		<dc:creator>Phil</dc:creator>
		<pubDate>Tue, 13 Nov 2007 21:54:33 +0000</pubDate>
		<guid isPermaLink="false">http://crazytoon.com/2007/01/23/mysql-backups-using-mysqldump/#comment-508</guid>
		<description>I was able to restore to the 4.0 database and to individual tables.  Thanks.

Is there a way to get the dump files to break into multiple files if they are over 10meg?  That&#039;s the limit my isp allows for imports.

I manually broke up the larger table dumps and it worked but the process was painful.

Phil

[source server is win2003 with iis.]</description>
		<content:encoded><![CDATA[<p>I was able to restore to the 4.0 database and to individual tables.  Thanks.</p>
<p>Is there a way to get the dump files to break into multiple files if they are over 10meg?  That&#8217;s the limit my isp allows for imports.</p>
<p>I manually broke up the larger table dumps and it worked but the process was painful.</p>
<p>Phil</p>
<p>[source server is win2003 with iis.]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CrazyToon</title>
		<link>http://crazytoon.com/2007/01/23/mysql-backups-using-mysqldump/comment-page-1/#comment-507</link>
		<dc:creator>CrazyToon</dc:creator>
		<pubDate>Tue, 13 Nov 2007 21:06:59 +0000</pubDate>
		<guid isPermaLink="false">http://crazytoon.com/2007/01/23/mysql-backups-using-mysqldump/#comment-507</guid>
		<description>Phil,
1) depends on what you are using 5.x for.  Most times its safe to do a restore on 4.x version from 5.x unless you have been using stored procedures, views, cursors, etc (read changes here:  http://dev.mysql.com/doc/refman/5.0/en/news-5-0-x.html )

2) you can specify individual tables for mysqldump:
mysqldump dbname table1 table2 ...</description>
		<content:encoded><![CDATA[<p>Phil,<br />
1) depends on what you are using 5.x for.  Most times its safe to do a restore on 4.x version from 5.x unless you have been using stored procedures, views, cursors, etc (read changes here:  <a href="http://dev.mysql.com/doc/refman/5.0/en/news-5-0-x.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/news-5-0-x.html</a> )</p>
<p>2) you can specify individual tables for mysqldump:<br />
mysqldump dbname table1 table2 &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil</title>
		<link>http://crazytoon.com/2007/01/23/mysql-backups-using-mysqldump/comment-page-1/#comment-499</link>
		<dc:creator>Phil</dc:creator>
		<pubDate>Thu, 08 Nov 2007 18:32:00 +0000</pubDate>
		<guid isPermaLink="false">http://crazytoon.com/2007/01/23/mysql-backups-using-mysqldump/#comment-499</guid>
		<description>Two questions from a newbie:
1)I&#039;m dumping from mySQL 5.0.45 and restoring to 4.0.  Do you forsee any issues?

2)Can individual tables be dumped?</description>
		<content:encoded><![CDATA[<p>Two questions from a newbie:<br />
1)I&#8217;m dumping from mySQL 5.0.45 and restoring to 4.0.  Do you forsee any issues?</p>
<p>2)Can individual tables be dumped?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: niehxietip</title>
		<link>http://crazytoon.com/2007/01/23/mysql-backups-using-mysqldump/comment-page-1/#comment-269</link>
		<dc:creator>niehxietip</dc:creator>
		<pubDate>Tue, 31 Jul 2007 14:04:29 +0000</pubDate>
		<guid isPermaLink="false">http://crazytoon.com/2007/01/23/mysql-backups-using-mysqldump/#comment-269</guid>
		<description>Hello! Good Site! Thanks you! olpigectkjj</description>
		<content:encoded><![CDATA[<p>Hello! Good Site! Thanks you! olpigectkjj</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mysqldump tips by crazytoon - Rusty Razor Blade</title>
		<link>http://crazytoon.com/2007/01/23/mysql-backups-using-mysqldump/comment-page-1/#comment-2</link>
		<dc:creator>mysqldump tips by crazytoon - Rusty Razor Blade</dc:creator>
		<pubDate>Wed, 24 Jan 2007 00:37:56 +0000</pubDate>
		<guid isPermaLink="false">http://crazytoon.com/2007/01/23/mysql-backups-using-mysqldump/#comment-2</guid>
		<description>[...] sysadmin has a nice blog post with a few tips for using mysqldump, especially if your database is used for more than a basic [...]</description>
		<content:encoded><![CDATA[<p>[...] sysadmin has a nice blog post with a few tips for using mysqldump, especially if your database is used for more than a basic [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

