<?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>Herbert Yang &#187; Database</title>
	<atom:link href="http://www.herbertyang.com/tag/database/feed" rel="self" type="application/rss+xml" />
	<link>http://www.herbertyang.com</link>
	<description></description>
	<lastBuildDate>Wed, 13 Jul 2011 07:02:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>PowerDesigner导入SQL生成数据模型</title>
		<link>http://www.herbertyang.com/2009/05/08/powerdesigner-data-model-into-sql-generation.html</link>
		<comments>http://www.herbertyang.com/2009/05/08/powerdesigner-data-model-into-sql-generation.html#comments</comments>
		<pubDate>Fri, 08 May 2009 13:54:11 +0000</pubDate>
		<dc:creator>Herbert</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[Thinking]]></category>
		<category><![CDATA[PowerDesigner]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://blog.shishuo.com/?p=261</guid>
		<description><![CDATA[此方法是还原数据库设计的一种很好的方法，正所谓偷学别人的方法和技巧。 File-&#62;Revers Engineer-&#62;Database 然后选择好SQL文件的数据库类型后确定。 选择&#8221;Using script files&#8221;并选择你的SQL文件。点击确定。]]></description>
			<content:encoded><![CDATA[<p>此方法是还原数据库设计的一种很好的方法，正所谓偷学别人的方法和技巧。</p>
<p>File-&gt;Revers Engineer-&gt;Database</p>
<p>然后选择好SQL文件的数据库类型后确定。</p>
<p>选择&#8221;Using script files&#8221;并选择你的SQL文件。点击确定。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.herbertyang.com/2009/05/08/powerdesigner-data-model-into-sql-generation.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>批量删除某个前缀的表[MySQL]</title>
		<link>http://www.herbertyang.com/2009/04/09/%e6%89%b9%e9%87%8f%e5%88%a0%e9%99%a4%e6%9f%90%e4%b8%aa%e5%89%8d%e7%bc%80%e7%9a%84%e8%a1%a8mysql.html</link>
		<comments>http://www.herbertyang.com/2009/04/09/%e6%89%b9%e9%87%8f%e5%88%a0%e9%99%a4%e6%9f%90%e4%b8%aa%e5%89%8d%e7%bc%80%e7%9a%84%e8%a1%a8mysql.html#comments</comments>
		<pubDate>Thu, 09 Apr 2009 03:15:52 +0000</pubDate>
		<dc:creator>Herbert</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://blog.shishuo.com/?p=162</guid>
		<description><![CDATA[由于本站点尝试过安装了BBS和其它一个博客，但又被我卸载了，现在想把这些有特殊前缀的表全部删掉。好像MySQL本身没有这个功能，所以找方法取而代之。 先运行下面的SQL语句： select concat('drop table ', table_name, ';') from information_schema.tables where table_name like 'bbs_%'; 然后得到一个drop table bbs_* 的列表，很简单了，到控制台跑一遍就可以了。]]></description>
			<content:encoded><![CDATA[<p>由于本站点尝试过安装了BBS和其它一个博客，但又被我卸载了，现在想把这些有特殊前缀的表全部删掉。好像MySQL本身没有这个功能，所以找方法取而代之。</p>
<p>先运行下面的SQL语句：</p>
<pre class="brush: sql; title: ;">

select concat('drop table ', table_name, ';') from information_schema.tables where table_name like 'bbs_%';
</pre>
<p>然后得到一个drop table bbs_* 的列表，很简单了，到控制台跑一遍就可以了。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.herbertyang.com/2009/04/09/%e6%89%b9%e9%87%8f%e5%88%a0%e9%99%a4%e6%9f%90%e4%b8%aa%e5%89%8d%e7%bc%80%e7%9a%84%e8%a1%a8mysql.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

