<?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: Export Mysql Database into a CSV File</title>
	<atom:link href="http://www.debianadmin.com/export-mysql-database-into-a-csv-file.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.debianadmin.com/export-mysql-database-into-a-csv-file.html</link>
	<description>Debian/Ubuntu Linux System Administration Tutorials,Howtos,Tips</description>
	<lastBuildDate>Thu, 19 Nov 2009 13:24:32 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Steeve Cayla</title>
		<link>http://www.debianadmin.com/export-mysql-database-into-a-csv-file.html/comment-page-1#comment-2561</link>
		<dc:creator>Steeve Cayla</dc:creator>
		<pubDate>Tue, 17 Mar 2009 10:20:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/export-mysql-database-into-a-csv-file.html#comment-2561</guid>
		<description>Thanks a lot !!
Just what I needed :)</description>
		<content:encoded><![CDATA[<p>Thanks a lot !!<br />
Just what I needed <img src='http://www.debianadmin.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vitalie</title>
		<link>http://www.debianadmin.com/export-mysql-database-into-a-csv-file.html/comment-page-1#comment-2392</link>
		<dc:creator>Vitalie</dc:creator>
		<pubDate>Fri, 13 Feb 2009 17:15:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/export-mysql-database-into-a-csv-file.html#comment-2392</guid>
		<description>Hi!

I tried this command of MySQL on Ubuntu 8.10  but it says:

bash: .: filename argument required
.: usage: . filename [arguments]
sed: -e expression #1, char 1: unknown command: `.&#039;
bash: s/^/./: No such file or directory
bash: s/$/./: No such file or directory
bash: s/n//g.: No such file or directory




What is exact command I should run?</description>
		<content:encoded><![CDATA[<p>Hi!</p>
<p>I tried this command of MySQL on Ubuntu 8.10  but it says:</p>
<p>bash: .: filename argument required<br />
.: usage: . filename [arguments]<br />
sed: -e expression #1, char 1: unknown command: `.&#8217;<br />
bash: s/^/./: No such file or directory<br />
bash: s/$/./: No such file or directory<br />
bash: s/n//g.: No such file or directory</p>
<p>What is exact command I should run?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bianca</title>
		<link>http://www.debianadmin.com/export-mysql-database-into-a-csv-file.html/comment-page-1#comment-1691</link>
		<dc:creator>Bianca</dc:creator>
		<pubDate>Thu, 16 Oct 2008 08:46:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/export-mysql-database-into-a-csv-file.html#comment-1691</guid>
		<description>Where is this file saved?

Thank you!

Bianca</description>
		<content:encoded><![CDATA[<p>Where is this file saved?</p>
<p>Thank you!</p>
<p>Bianca</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jaybee</title>
		<link>http://www.debianadmin.com/export-mysql-database-into-a-csv-file.html/comment-page-1#comment-1690</link>
		<dc:creator>jaybee</dc:creator>
		<pubDate>Thu, 07 Aug 2008 05:20:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/export-mysql-database-into-a-csv-file.html#comment-1690</guid>
		<description>Sheeri what you suggest is different in the case the server and the client are different machines, which is the most likely in the real world.

&quot;Select * INTO OUTFILE&quot; can only output to the server host machine.
If you want an output file on your client machine, mysql -e is a good option.

Unless you want to scp to your server... assuming that you even have the permission to write somewhere.</description>
		<content:encoded><![CDATA[<p>Sheeri what you suggest is different in the case the server and the client are different machines, which is the most likely in the real world.</p>
<p>&#8220;Select * INTO OUTFILE&#8221; can only output to the server host machine.<br />
If you want an output file on your client machine, mysql -e is a good option.</p>
<p>Unless you want to scp to your server&#8230; assuming that you even have the permission to write somewhere.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sheeri</title>
		<link>http://www.debianadmin.com/export-mysql-database-into-a-csv-file.html/comment-page-1#comment-1689</link>
		<dc:creator>Sheeri</dc:creator>
		<pubDate>Sat, 10 Feb 2007 03:39:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/export-mysql-database-into-a-csv-file.html#comment-1689</guid>
		<description>You can also use

SELECT x,y,z INTO OUTFILE &#039;/path/to/file&#039;
FIELDS TERMINATED BY &#039;,&#039; ENCLOSED BY &#039;&quot;&#039;
FROM tbl WHERE ....

see http://dev.mysql.com/doc/refman/5.0/en/select.html</description>
		<content:encoded><![CDATA[<p>You can also use</p>
<p>SELECT x,y,z INTO OUTFILE &#8216;/path/to/file&#8217;<br />
FIELDS TERMINATED BY &#8216;,&#8217; ENCLOSED BY &#8216;&#8221;&#8216;<br />
FROM tbl WHERE &#8230;.</p>
<p>see <a href="http://dev.mysql.com/doc/refman/5.0/en/select.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/select.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thiago</title>
		<link>http://www.debianadmin.com/export-mysql-database-into-a-csv-file.html/comment-page-1#comment-1688</link>
		<dc:creator>Thiago</dc:creator>
		<pubDate>Wed, 07 Feb 2007 17:03:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/export-mysql-database-into-a-csv-file.html#comment-1688</guid>
		<description>I translated this article for the Portuguese of Brazil. The automatic translation was very bad:

http://www.ajudalinux.org/wps/?p=91</description>
		<content:encoded><![CDATA[<p>I translated this article for the Portuguese of Brazil. The automatic translation was very bad:</p>
<p><a href="http://www.ajudalinux.org/wps/?p=91" rel="nofollow">http://www.ajudalinux.org/wps/?p=91</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
