<?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>ActiveSPLIT.com &#187; mysql</title>
	<atom:link href="http://www.activesplit.com/wpt/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.activesplit.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sat, 10 Dec 2011 23:49:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Move WordPress to a new domain / location</title>
		<link>http://www.activesplit.com/move-wordpress-to-a-new-domain-location/</link>
		<comments>http://www.activesplit.com/move-wordpress-to-a-new-domain-location/#comments</comments>
		<pubDate>Mon, 24 May 2010 22:25:51 +0000</pubDate>
		<dc:creator>Nik</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[move wordpress]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[wp move]]></category>

		<guid isPermaLink="false">http://www.activesplit.com/?p=209</guid>
		<description><![CDATA[How to move WordPress to a new location in few steps. - move files, addapt .htaccess, wp-config.php if needed - backup database - run the following queries (replace old_url.tld, new_url.tld with actual data) &#160; UPDATE wp_options SET option_value = replace(option_value, 'http://www.old_url.tld', 'http://www.new_url.tld') WHERE option_name = 'home' OR option_name = 'siteurl'; UPDATE wp_posts SET guid = replace(guid, [...]]]></description>
		<wfw:commentRss>http://www.activesplit.com/move-wordpress-to-a-new-domain-location/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL &#8211; Get the Top N of a Group</title>
		<link>http://www.activesplit.com/mysql-get-the-top-n-of-a-group/</link>
		<comments>http://www.activesplit.com/mysql-get-the-top-n-of-a-group/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 09:43:08 +0000</pubDate>
		<dc:creator>Nik</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[group by]]></category>
		<category><![CDATA[having]]></category>
		<category><![CDATA[limit]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[mysql limit restriction]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[top n]]></category>
		<category><![CDATA[top n of group]]></category>

		<guid isPermaLink="false">http://www.activesplit.com/?p=198</guid>
		<description><![CDATA[Getting Top N of a group would be very easy if there just wasn&#8217;t that &#8216;LIMIT &#38; IN/ALL/ANY/SOME subquery&#8217; restriction. But there&#8217;s always some way around. Thx to Jon Armstrong from A little Noise for the code hint. MYSQL table 'measurements' &#124; Id &#124; Freq &#124; Level &#124; DateM ## Gets the last 2 measurements [...]]]></description>
		<wfw:commentRss>http://www.activesplit.com/mysql-get-the-top-n-of-a-group/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MYSQL &#8211; Disabling FULLTEXT Search stopwords</title>
		<link>http://www.activesplit.com/mysql-disabling-fulltext-search-stopwords/</link>
		<comments>http://www.activesplit.com/mysql-disabling-fulltext-search-stopwords/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 22:38:56 +0000</pubDate>
		<dc:creator>Nik</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[disable stopwords]]></category>
		<category><![CDATA[ft_stopword_file]]></category>
		<category><![CDATA[fulltext]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[stopwords]]></category>

		<guid isPermaLink="false">http://www.activesplit.com/?p=140</guid>
		<description><![CDATA[To disable MySQL FULLTEXT Search stopwords open the mysql config file and below [mysqld] add the following line: ft_stopword_file = &#8220;&#8221; By setting the ft_stopword_file value to an empty string the usual stopwords won&#8217;t be ignored any more. Here is what the manual says about setting a new stopwords file: To override the default stopword [...]]]></description>
		<wfw:commentRss>http://www.activesplit.com/mysql-disabling-fulltext-search-stopwords/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MySQL  &#8211; How to change the FULLTEXT SEARCH 4 character minimum behaviour</title>
		<link>http://www.activesplit.com/mysql-how-to-change-the-fulltext-search-4-character-minimum-behaviour/</link>
		<comments>http://www.activesplit.com/mysql-how-to-change-the-fulltext-search-4-character-minimum-behaviour/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 21:56:50 +0000</pubDate>
		<dc:creator>Nik</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[3 characters]]></category>
		<category><![CDATA[characters]]></category>
		<category><![CDATA[ft_min_word_len]]></category>
		<category><![CDATA[fulltext]]></category>
		<category><![CDATA[index]]></category>
		<category><![CDATA[minimum word length]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[word length]]></category>

		<guid isPermaLink="false">http://www.activesplit.com/?p=137</guid>
		<description><![CDATA[By default the FULLTEXT minimum characters behaviour is set to 4 characters. To check what value is preset on your server type the following query: SHOW VARIABLES LIKE &#8216;ft%&#8217;; That shoud bring up a result similar to this: Variable_name Value ft_boolean_syntax + -&#62;&#60;()~*:&#8221;"&#38;&#124; ft_max_word_len 84 ft_min_word_len 4 ft_query_expansion_limit 20 ft_stopword_file (built-in) To change the ftp_min_word_len [...]]]></description>
		<wfw:commentRss>http://www.activesplit.com/mysql-how-to-change-the-fulltext-search-4-character-minimum-behaviour/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

