<?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>Ramblings from MostlyChris &#187; tables</title>
	<atom:link href="http://blog.mostlychris.com/tag/tables/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mostlychris.com</link>
	<description>Tech stuff and a bit more</description>
	<lastBuildDate>Tue, 27 Dec 2011 14:23:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Dropping All Table in a Database</title>
		<link>http://blog.mostlychris.com/2009/04/dropping-all-table-in-a-database/</link>
		<comments>http://blog.mostlychris.com/2009/04/dropping-all-table-in-a-database/#comments</comments>
		<pubDate>Sun, 19 Apr 2009 22:07:26 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[tables]]></category>

		<guid isPermaLink="false">http://blog.mostlychris.com/?p=414</guid>
		<description><![CDATA[Here is a handy little snippet for deleting all the tables in a database. Replace 'uname' and 'dbname' as required. mysql -u uname dbname -e &#34;show tables&#34; &#124; grep -v Tables_in &#124; grep -v &#34;+&#34; &#160;&#124; gawk '{print &#34;drop table &#34; $1 &#34;;&#34;}' &#124; mysql -u uname dbname]]></description>
		<wfw:commentRss>http://blog.mostlychris.com/2009/04/dropping-all-table-in-a-database/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

