<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Jens Olsson &#187; MySQL</title>
	<atom:link href="http://jens.yelles.se/tag/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://jens.yelles.se</link>
	<description>My Underground Development</description>
	<lastBuildDate>Tue, 16 Aug 2011 09:27:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Import large CSV file into MySQL</title>
		<link>http://jens.yelles.se/2011/01/12/import-large-csv-file-into-mysql/</link>
		<comments>http://jens.yelles.se/2011/01/12/import-large-csv-file-into-mysql/#comments</comments>
		<pubDate>Wed, 12 Jan 2011 09:46:33 +0000</pubDate>
		<dc:creator>Jens Olsson</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[CSV]]></category>
		<category><![CDATA[import]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://jens.yelles.se/?p=209</guid>
		<description><![CDATA[When I was about to import a large CSV file into MySQL I kind of ran into a problem. Since phpMyAdmin does not like large files I had to find another solution. ( Dident get it if I could SSH it, hehe). Well I found dbForge! Perfect program for the job, though it cost some [...]]]></description>
			<content:encoded><![CDATA[<p>When I was about to import a large CSV file into MySQL I kind of ran into a problem. Since phpMyAdmin does not like large files I had to find another solution. ( Dident get it if I could SSH it, hehe). Well I found dbForge! Perfect program for the job, though it cost some money but perhaps worth it, running trail period now. If you know any simalry program thats free, let me know! <img src='http://jens.yelles.se/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://jens.yelles.se/2011/01/12/import-large-csv-file-into-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backup and restore MySQL tables/database</title>
		<link>http://jens.yelles.se/2010/03/15/backup-and-restore-mysql-tablesdatabase/</link>
		<comments>http://jens.yelles.se/2010/03/15/backup-and-restore-mysql-tablesdatabase/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 21:04:23 +0000</pubDate>
		<dc:creator>Jens Olsson</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Restore]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://jens.yelles.se/?p=201</guid>
		<description><![CDATA[If you have a lagre database that you will take backup on you might find it hard to do so with example phpmyadmin. MySQL made commando for this so you easy can do this in your terminal on both Windows and Linux. I will first go with Linux. OBS: The commando are the same for [...]]]></description>
			<content:encoded><![CDATA[<p>If you have a lagre database that you will take backup on you might find it hard to do so with example phpmyadmin. MySQL made commando for this so you easy can do this in your terminal on both Windows and Linux. I will first go with Linux. OBS: The commando are the same for both Linux and Windows.</p>
<p><strong>MySQLdump commando</strong></p>
<blockquote><p>mysqldump -u username -ppassword database_name table_name &gt; /your/way/to/sql/file/file_name.sql</p></blockquote>
<p><strong>SQL for restore table/database</strong></p>
<blockquote><p>mysql -u username -ppassword database_name &lt; /your/way/to/sql/file/file_name.sql</p></blockquote>
<p>If you want to backup full database just dont write the table name on first commando.</p>
<p>If you use Windows you have to go to you bin folder who is in your mysql folder. For example in EasyPHP the way is:</p>
<p>c:\program\easyphp-folder\mysql\bin</p>
<p>From there run the commando. Also if you did not understand, you first run the location in simple CMD and then run the commando.</p>
]]></content:encoded>
			<wfw:commentRss>http://jens.yelles.se/2010/03/15/backup-and-restore-mysql-tablesdatabase/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Unexpected end of mysql &#8211; EasyPHP</title>
		<link>http://jens.yelles.se/2009/11/02/unexpected-end-of-mysql-easy-php/</link>
		<comments>http://jens.yelles.se/2009/11/02/unexpected-end-of-mysql-easy-php/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 16:48:38 +0000</pubDate>
		<dc:creator>Jens Olsson</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[EasyPHP]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://jens.yelles.se/?p=190</guid>
		<description><![CDATA[When I was running EasyPHP on my Vista machine I got error: unexpected end of mysql To solve this just quit easyPHP and then right click on easyphp.exe and run as administrator. Hope it helped. Dident find this trick on google so perhaps you did Good luck!]]></description>
			<content:encoded><![CDATA[<p>When I was running EasyPHP on my Vista machine I got error:</p>
<blockquote><p>unexpected end of mysql</p></blockquote>
<p>To solve this just quit easyPHP and then right click on easyphp.exe and run as administrator. Hope it helped. Dident find this trick on google so perhaps you did <img src='http://jens.yelles.se/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Good luck!</p>
]]></content:encoded>
			<wfw:commentRss>http://jens.yelles.se/2009/11/02/unexpected-end-of-mysql-easy-php/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Apache2, PHP 5, MySQL 5, phpMyAdmin for Windows</title>
		<link>http://jens.yelles.se/2009/03/21/apache2-php-5-mysql-5-phpmyadmin-for-windows/</link>
		<comments>http://jens.yelles.se/2009/03/21/apache2-php-5-mysql-5-phpmyadmin-for-windows/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 20:22:52 +0000</pubDate>
		<dc:creator>Jens Olsson</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Apache2]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[phpMyAdmin]]></category>

		<guid isPermaLink="false">http://jens.yelles.se/?p=74</guid>
		<description><![CDATA[Here comes a little howto install Apache2, PHP 5, MySQL 5 and phpMyAdmin for windows. In this tutorial I will use easyPHP which is a packed for these applications. First, go to www.easyphp.org for downloading easyphp 3. After you have download it just install easyphp. When it is installed run it and go to http://127.0.0.1/home/ [...]]]></description>
			<content:encoded><![CDATA[<p>Here comes a little howto install <strong>Apache2, PHP 5, MySQL 5 </strong>and <strong>phpMyAdmin</strong> for windows.</p>
<p>In this tutorial I will use easyPHP which is a packed for these applications.</p>
<p>First, go to <a href="http://www.easyphp.org">www.easyphp.org</a> for downloading easyphp 3.</p>
<p>After you have download it just install easyphp.</p>
<p>When it is installed run it and go to <a href="http://127.0.0.1/home/">http://127.0.0.1/home/</a></p>
<p>Here is where you can run phpMyAdmin, add links to other folders that is not in www etc. Everything is done here but I can recommend you to update this things:</p>
<p>1. Right click on your trail icon. Config » PHP. Edit short_open_tag = Off to short_open_tag = On.</p>
<p>2. Add new user to your MySQL server. Go to  <a href="http://127.0.0.1/home/">http://127.0.0.1/home/</a> select phpmyadmin (mysql management) and go to privilege.  Here you can add users. Do NOT edit root password, it will cause problems.</p>
<p>If you have problem let me know and I will try to help you out.</p>
<p>Good Luck</p>
]]></content:encoded>
			<wfw:commentRss>http://jens.yelles.se/2009/03/21/apache2-php-5-mysql-5-phpmyadmin-for-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

