<?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: An algorithm to find and resolve data differences between MySQL tables</title>
	<atom:link href="http://www.xaprb.com/blog/2007/03/05/an-algorithm-to-find-and-resolve-data-differences-between-mysql-tables/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.xaprb.com/blog/2007/03/05/an-algorithm-to-find-and-resolve-data-differences-between-mysql-tables/</link>
	<description>Stay curious!</description>
	<lastBuildDate>Thu, 09 Feb 2012 20:41:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: paramjeet</title>
		<link>http://www.xaprb.com/blog/2007/03/05/an-algorithm-to-find-and-resolve-data-differences-between-mysql-tables/#comment-15230</link>
		<dc:creator>paramjeet</dc:creator>
		<pubDate>Tue, 14 Oct 2008 12:01:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/?p=313#comment-15230</guid>
		<description>i want the algorithm to find the table of any no.</description>
		<content:encoded><![CDATA[<p>i want the algorithm to find the table of any no.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Xaprb</title>
		<link>http://www.xaprb.com/blog/2007/03/05/an-algorithm-to-find-and-resolve-data-differences-between-mysql-tables/#comment-13502</link>
		<dc:creator>Xaprb</dc:creator>
		<pubDate>Tue, 09 Oct 2007 12:52:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/?p=313#comment-13502</guid>
		<description>But by all means, explore your algorithm too!  I don&#039;t mean to say you shouldn&#039;t.  It may be a much better way.</description>
		<content:encoded><![CDATA[<p>But by all means, explore your algorithm too!  I don&#8217;t mean to say you shouldn&#8217;t.  It may be a much better way.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Xaprb</title>
		<link>http://www.xaprb.com/blog/2007/03/05/an-algorithm-to-find-and-resolve-data-differences-between-mysql-tables/#comment-13501</link>
		<dc:creator>Xaprb</dc:creator>
		<pubDate>Tue, 09 Oct 2007 12:50:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/?p=313#comment-13501</guid>
		<description>Please take a look at MySQL Table Sync in the MySQL Toolkit (http:mysqltoolkit.sourceforge.net).  It may save you a lot of work.  I&#039;ve implemented both algorithms there.</description>
		<content:encoded><![CDATA[<p>Please take a look at MySQL Table Sync in the MySQL Toolkit (http:mysqltoolkit.sourceforge.net).  It may save you a lot of work.  I&#8217;ve implemented both algorithms there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Negruzzi Cristian</title>
		<link>http://www.xaprb.com/blog/2007/03/05/an-algorithm-to-find-and-resolve-data-differences-between-mysql-tables/#comment-13500</link>
		<dc:creator>Negruzzi Cristian</dc:creator>
		<pubDate>Tue, 09 Oct 2007 12:38:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/?p=313#comment-13500</guid>
		<description>Nice article. I&#039;ve studied the algorithm before, but wasn&#039;t so clearly. 
Actually I met he same need for keeping my databases synchronized, and for some days I&#039;m trying to build a suitable algorithm for that. The Top-Down algorithm is good, but, as you mentioned, is too hard to find a good grouping. And how what is to be done if there is only one indexed column as Primary Key? So I find the Bottom-Up more suitable for that purpose, but with some differences, I&#039;m going to build a B*-Tree based on row checksums for each table, keep it saved locally (I think a XML structure is a good way) and, for saving time and traffic, do the comparison locally too. I&#039;m not sure it&#039;s the best way for that, but i want to try.
Best regards.</description>
		<content:encoded><![CDATA[<p>Nice article. I&#8217;ve studied the algorithm before, but wasn&#8217;t so clearly.<br />
Actually I met he same need for keeping my databases synchronized, and for some days I&#8217;m trying to build a suitable algorithm for that. The Top-Down algorithm is good, but, as you mentioned, is too hard to find a good grouping. And how what is to be done if there is only one indexed column as Primary Key? So I find the Bottom-Up more suitable for that purpose, but with some differences, I&#8217;m going to build a B*-Tree based on row checksums for each table, keep it saved locally (I think a XML structure is a good way) and, for saving time and traffic, do the comparison locally too. I&#8217;m not sure it&#8217;s the best way for that, but i want to try.<br />
Best regards.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chhivhorng</title>
		<link>http://www.xaprb.com/blog/2007/03/05/an-algorithm-to-find-and-resolve-data-differences-between-mysql-tables/#comment-11909</link>
		<dc:creator>chhivhorng</dc:creator>
		<pubDate>Wed, 27 Jun 2007 09:57:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/?p=313#comment-11909</guid>
		<description>I have some problem with query sql.
I want you correct for me.
this is my query :
$queryselect=&quot;select Distinct student.id_student,first_name,last_name,promotion,class
from student,applicationrecieve where student.id_student  applicationrecieve.id_student&quot;;

the query that I write to you, I want to select data that it don&#039;t have in the table applicationrecieve from table student.
 
thanks,
regards,
chhivhorng</description>
		<content:encoded><![CDATA[<p>I have some problem with query sql.<br />
I want you correct for me.<br />
this is my query :<br />
$queryselect=&#8221;select Distinct student.id_student,first_name,last_name,promotion,class<br />
from student,applicationrecieve where student.id_student  applicationrecieve.id_student&#8221;;</p>
<p>the query that I write to you, I want to select data that it don&#8217;t have in the table applicationrecieve from table student.</p>
<p>thanks,<br />
regards,<br />
chhivhorng</p>
]]></content:encoded>
	</item>
</channel>
</rss>

