<?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>Florian Palme</title>
	<atom:link href="https://www.florian-palme.de/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.florian-palme.de</link>
	<description>Front- &#38; Backend-Entwickler</description>
	<lastBuildDate>Fri, 22 Dec 2017 18:44:07 +0000</lastBuildDate>
	<language>de-DE</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://www.florian-palme.de/wp-content/uploads/2017/03/cropped-fplogo512-150x150.png</url>
	<title>Florian Palme</title>
	<link>https://www.florian-palme.de</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Import großer MySQL-Dateien</title>
		<link>https://www.florian-palme.de/import-grosser-mysql-dateien</link>
				<comments>https://www.florian-palme.de/import-grosser-mysql-dateien#respond</comments>
				<pubDate>Fri, 22 Dec 2017 18:29:12 +0000</pubDate>
		<dc:creator><![CDATA[fpalme]]></dc:creator>
				<category><![CDATA[Code-Snippets]]></category>
		<category><![CDATA[Entwickler]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Datenbank]]></category>
		<category><![CDATA[Import]]></category>
		<category><![CDATA[Stack Overflow]]></category>

		<guid isPermaLink="false">https://www.florian-palme.de/?p=188</guid>
				<description><![CDATA[<p>Der Import großer MySQL-Dateien in eine Datenbank kann eine Qual sein. Vor einiger Zeit musste ich eine Datenbank mit mehreren Gigabyte importieren. Nach vielen Versuchen und letztlich einer Google-Suche fand ich eine Lösung, welche mir seither beste Dienste leistet. #...</p>
<p>Der Beitrag <a rel="nofollow" href="https://www.florian-palme.de/import-grosser-mysql-dateien">Import großer MySQL-Dateien</a> erschien zuerst auf <a rel="nofollow" href="https://www.florian-palme.de">Florian Palme</a>.</p>
]]></description>
								<content:encoded><![CDATA[<p>Der Import großer MySQL-Dateien in eine Datenbank kann eine Qual sein. Vor einiger Zeit musste ich eine Datenbank mit mehreren Gigabyte importieren. Nach vielen Versuchen und letztlich einer Google-Suche fand ich eine Lösung, welche mir seither beste Dienste leistet.</p>
<pre class="prettyprint lang-mysql" data-start-line="1" data-visibility="visible" data-highlight="" data-caption="test"># Set network buffer length to a large byte number
set global net_buffer_length=1000000;

# Set maximum allowed packet size to a large byte number
set global max_allowed_packet=1000000000;

# Disable foreign key checking to avoid delays,errors and unwanted behaviour
SET foreign_key_checks = 0;

# Import your sql dump file
source file.sql

# Remember to enable foreign key checks when procedure is complete!
SET foreign_key_checks = 1;
</pre>
<p>Ein großes Dankeschön geht an <a href="https://stackoverflow.com/users/1120066/kresimir-plese">Kresimir</a> für diese super Lösung! &#8211; <a href="https://stackoverflow.com/a/22155778" target="_blank" rel="noopener">https://stackoverflow.com/a/22155778</a></p>
<p>Der Beitrag <a rel="nofollow" href="https://www.florian-palme.de/import-grosser-mysql-dateien">Import großer MySQL-Dateien</a> erschien zuerst auf <a rel="nofollow" href="https://www.florian-palme.de">Florian Palme</a>.</p>
]]></content:encoded>
							<wfw:commentRss>https://www.florian-palme.de/import-grosser-mysql-dateien/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
	</channel>
</rss>
