<?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>Seth Keiper &#187; MySQL</title>
	<atom:link href="http://sethkeiper.com/category/overall/left-brain/coding-and-programming/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://sethkeiper.com</link>
	<description>Children are smarter than any of us. Know how I know that? I don&#039;t know one child with a full time job and children.</description>
	<lastBuildDate>Sat, 07 Jan 2012 16:29:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Drop all MySQL Stored Procedures</title>
		<link>http://sethkeiper.com/2011/06/29/drop-all-mysql-stored-procedures/</link>
		<comments>http://sethkeiper.com/2011/06/29/drop-all-mysql-stored-procedures/#comments</comments>
		<pubDate>Wed, 29 Jun 2011 16:45:01 +0000</pubDate>
		<dc:creator>Seth Keiper</dc:creator>
				<category><![CDATA[Coding and Programming]]></category>
		<category><![CDATA[Left Brain]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Overall]]></category>

		<guid isPermaLink="false">http://sethkeiper.com/?p=115</guid>
		<description><![CDATA[Ever want to drop all MySQL Stored Procedures? Here is how you can do it: USE &#60;DATABASENAME&#62;; SELECT CONCAT_WS("", "DROP PROCEDURE IF EXISTS ", `R`.`SPECIFIC_NAME` ) AS DeleteStorePrecedure FROM `information_schema`.`ROUTINES` AS R WHERE `R`.`ROUTINE_TYPE` = "PROCEDURE" AND `R`.`ROUTINE_SCHEMA` = DATABASE() ; Alternatively, you can load this data into an outputted file: USE &#60;DATABASENAME&#62;; SELECT CONCAT_WS("", [...]]]></description>
		<wfw:commentRss>http://sethkeiper.com/2011/06/29/drop-all-mysql-stored-procedures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL CREATE DATABASE with UTF8</title>
		<link>http://sethkeiper.com/2010/09/28/mysql-create-database-with-utf8/</link>
		<comments>http://sethkeiper.com/2010/09/28/mysql-create-database-with-utf8/#comments</comments>
		<pubDate>Tue, 28 Sep 2010 18:43:10 +0000</pubDate>
		<dc:creator>Seth Keiper</dc:creator>
				<category><![CDATA[BSD]]></category>
		<category><![CDATA[Coding and Programming]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[OSes]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://sk.c-wd.net/wp/?p=34</guid>
		<description><![CDATA[From time to time, I tend to forget simple things, such as the exact syntax for creating a UTF8 database in MySQL. Here is an example: CREATE DATABASE IF NOT EXISTS `database_name` CHARACTER SET utf8 COLLATE utf8_general_ci; There we go.]]></description>
		<wfw:commentRss>http://sethkeiper.com/2010/09/28/mysql-create-database-with-utf8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sphider: a FOSS search engine</title>
		<link>http://sethkeiper.com/2009/07/27/sphider-a-foss-search-engine/</link>
		<comments>http://sethkeiper.com/2009/07/27/sphider-a-foss-search-engine/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 00:16:19 +0000</pubDate>
		<dc:creator>Seth Keiper</dc:creator>
				<category><![CDATA[Coding and Programming]]></category>
		<category><![CDATA[Left Brain]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Overall]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://sk.c-wd.net/wp/?p=25</guid>
		<description><![CDATA[Of course, you could just write your own spider/search engine. Not overly complex nor deeply involved. But what if you need it *now*? Enter in Sphider. Sphider is a lightweight web spider and search engine written in PHP, using MySQL as its back end database. Also the html is templatable. And kicker: it is free [...]]]></description>
		<wfw:commentRss>http://sethkeiper.com/2009/07/27/sphider-a-foss-search-engine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

