<?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: The quickest route from database results to CSV</title>
	<atom:link href="http://rc3.org/2008/11/06/the-quickest-route-from-database-results-to-csv/feed/" rel="self" type="application/rss+xml" />
	<link>http://rc3.org/2008/11/06/the-quickest-route-from-database-results-to-csv/</link>
	<description>Rafe Colburn on software development (and other topics)</description>
	<lastBuildDate>Mon, 21 May 2012 23:52:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Rafe</title>
		<link>http://rc3.org/2008/11/06/the-quickest-route-from-database-results-to-csv/comment-page-1/#comment-3258</link>
		<dc:creator>Rafe</dc:creator>
		<pubDate>Sun, 09 Nov 2008 18:37:43 +0000</pubDate>
		<guid isPermaLink="false">http://rc3.org/?p=8680#comment-3258</guid>
		<description>&lt;p&gt;mysqldump is cool for dumping the full contents of tables, but I find myself running complex SELECT statements that use GROUP BY and needing those results in Excel so that they can be further analyzed.&lt;/p&gt;

&lt;p&gt;I didn&#039;t know about the -T flag for it, though. That&#039;s useful.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>mysqldump is cool for dumping the full contents of tables, but I find myself running complex SELECT statements that use GROUP BY and needing those results in Excel so that they can be further analyzed.</p>

<p>I didn&#8217;t know about the -T flag for it, though. That&#8217;s useful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flug</title>
		<link>http://rc3.org/2008/11/06/the-quickest-route-from-database-results-to-csv/comment-page-1/#comment-3254</link>
		<dc:creator>Flug</dc:creator>
		<pubDate>Fri, 07 Nov 2008 09:57:18 +0000</pubDate>
		<guid isPermaLink="false">http://rc3.org/?p=8680#comment-3254</guid>
		<description>&lt;p&gt;hey Jake-The mysqldump tool works beautilfully!Thx for the link;)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>hey Jake-The mysqldump tool works beautilfully!Thx for the link;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jake</title>
		<link>http://rc3.org/2008/11/06/the-quickest-route-from-database-results-to-csv/comment-page-1/#comment-3253</link>
		<dc:creator>Jake</dc:creator>
		<pubDate>Fri, 07 Nov 2008 05:18:09 +0000</pubDate>
		<guid isPermaLink="false">http://rc3.org/?p=8680#comment-3253</guid>
		<description>&lt;p&gt;Since it sounds like you have shell access to the box, try the mysqldump tool:&lt;/p&gt;

&lt;p&gt;http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html&lt;/p&gt;

&lt;p&gt;It&#039;s nice. You want the -T option.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Since it sounds like you have shell access to the box, try the mysqldump tool:</p>

<p><a href="http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html</a></p>

<p>It&#8217;s nice. You want the -T option.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam Trachtenberg</title>
		<link>http://rc3.org/2008/11/06/the-quickest-route-from-database-results-to-csv/comment-page-1/#comment-3252</link>
		<dc:creator>Adam Trachtenberg</dc:creator>
		<pubDate>Fri, 07 Nov 2008 04:41:53 +0000</pubDate>
		<guid isPermaLink="false">http://rc3.org/?p=8680#comment-3252</guid>
		<description>&lt;p&gt;I like http://www.php.net/fputcsv because it means you don&#039;t need to worry about escaping characters.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I like <a href="http://www.php.net/fputcsv" rel="nofollow">http://www.php.net/fputcsv</a> because it means you don&#8217;t need to worry about escaping characters.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy Fundinger</title>
		<link>http://rc3.org/2008/11/06/the-quickest-route-from-database-results-to-csv/comment-page-1/#comment-3251</link>
		<dc:creator>Andy Fundinger</dc:creator>
		<pubDate>Thu, 06 Nov 2008 22:58:42 +0000</pubDate>
		<guid isPermaLink="false">http://rc3.org/?p=8680#comment-3251</guid>
		<description>&lt;p&gt;Well, I just do it on the command line like this:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;echo &quot;SELECT * FROM users&quot; &#124; mysql  db_development &gt; myUsers.csv
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;usually I develop the query on terminal session and then use a command to dump the final query data to a file.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Well, I just do it on the command line like this:</p>

<pre><code>echo "SELECT * FROM users" | mysql  db_development &gt; myUsers.csv
</code></pre>

<p>usually I develop the query on terminal session and then use a command to dump the final query data to a file.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

