<?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 command-line tip: compare result sets</title>
	<atom:link href="http://www.xaprb.com/blog/2009/03/25/mysql-command-line-tip-compare-result-sets/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.xaprb.com/blog/2009/03/25/mysql-command-line-tip-compare-result-sets/</link>
	<description>Stay curious!</description>
	<lastBuildDate>Thu, 09 Feb 2012 09:56:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Derek</title>
		<link>http://www.xaprb.com/blog/2009/03/25/mysql-command-line-tip-compare-result-sets/#comment-18601</link>
		<dc:creator>Derek</dc:creator>
		<pubDate>Thu, 02 Sep 2010 08:13:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/?p=933#comment-18601</guid>
		<description>Just look for mysql pager info on: http://linux-sysadmin.org/2010/08/mysql-pager-filter-your-output/</description>
		<content:encoded><![CDATA[<p>Just look for mysql pager info on: <a href="http://linux-sysadmin.org/2010/08/mysql-pager-filter-your-output/" rel="nofollow">http://linux-sysadmin.org/2010/08/mysql-pager-filter-your-output/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Comparing MySQL result sets quickly &#124; Racker Hacker</title>
		<link>http://www.xaprb.com/blog/2009/03/25/mysql-command-line-tip-compare-result-sets/#comment-16409</link>
		<dc:creator>Comparing MySQL result sets quickly &#124; Racker Hacker</dc:creator>
		<pubDate>Tue, 05 May 2009 15:51:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/?p=933#comment-16409</guid>
		<description>[...] found a really helpful tip on Xaprb for comparing result sets in MySQL: mysql&gt; pager md5sum - PAGER set to &#039;md5sum -&#039; mysql&gt; [...]</description>
		<content:encoded><![CDATA[<p>[...] found a really helpful tip on Xaprb for comparing result sets in MySQL: mysql&gt; pager md5sum &#8211; PAGER set to &#8216;md5sum -&#8217; mysql&gt; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: A note on Baron&#8217;s command line tip for comparing result sets &#124; code.openark.org</title>
		<link>http://www.xaprb.com/blog/2009/03/25/mysql-command-line-tip-compare-result-sets/#comment-16266</link>
		<dc:creator>A note on Baron&#8217;s command line tip for comparing result sets &#124; code.openark.org</dc:creator>
		<pubDate>Thu, 16 Apr 2009 08:02:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/?p=933#comment-16266</guid>
		<description>[...] A while ago Baron Schwartz published a MySQL command-line tip: compare result sets. [...]</description>
		<content:encoded><![CDATA[<p>[...] A while ago Baron Schwartz published a MySQL command-line tip: compare result sets. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dev Blog AF83 &#187; Blog Archive &#187; Veille technologique : A la une, MÃ©thodes, Outils, Javascript, PHP, MySQL, Performances, Wallpapers</title>
		<link>http://www.xaprb.com/blog/2009/03/25/mysql-command-line-tip-compare-result-sets/#comment-16133</link>
		<dc:creator>Dev Blog AF83 &#187; Blog Archive &#187; Veille technologique : A la une, MÃ©thodes, Outils, Javascript, PHP, MySQL, Performances, Wallpapers</dc:creator>
		<pubDate>Tue, 31 Mar 2009 15:16:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/?p=933#comment-16133</guid>
		<description>[...] http://www.xaprb.com/blog/2009/03/25/mysql-command-line-tip-compare-result-sets/ : une utilisation astucieuse du pager de MySQL pour comparer des rÃ©sultats [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.xaprb.com/blog/2009/03/25/mysql-command-line-tip-compare-result-sets/" rel="nofollow">http://www.xaprb.com/blog/2009/03/25/mysql-command-line-tip-compare-result-sets/</a> : une utilisation astucieuse du pager de MySQL pour comparer des rÃ©sultats [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert Treat</title>
		<link>http://www.xaprb.com/blog/2009/03/25/mysql-command-line-tip-compare-result-sets/#comment-16114</link>
		<dc:creator>Robert Treat</dc:creator>
		<pubDate>Fri, 27 Mar 2009 18:16:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/?p=933#comment-16114</guid>
		<description>nice tip. btw, I think most Solaris wont ship with md5sum, but you can accomplish the same using digest:

mysql&gt; pager /usr/bin/digest -a md5
PAGER set to &#039;/usr/bin/digest -a md5&#039;
mysql&gt; select * from test;
09fb51bb0ba552611dec195c63ca27ea
1 row in set (0.00 sec)</description>
		<content:encoded><![CDATA[<p>nice tip. btw, I think most Solaris wont ship with md5sum, but you can accomplish the same using digest:</p>
<p>mysql&gt; pager /usr/bin/digest -a md5<br />
PAGER set to &#8216;/usr/bin/digest -a md5&#8242;<br />
mysql&gt; select * from test;<br />
09fb51bb0ba552611dec195c63ca27ea<br />
1 row in set (0.00 sec)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

