<?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>Oracle Database Experts &#187; PL/SQL</title>
	<atom:link href="http://www.dbaexpert.com/blog/category/plsql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dbaexpert.com/blog</link>
	<description>By Charles Kim</description>
	<lastBuildDate>Mon, 06 Sep 2010 14:07:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Simple script to dynamically drop tables</title>
		<link>http://www.dbaexpert.com/blog/2007/11/simple-script-to-dynamically-drop-tables/</link>
		<comments>http://www.dbaexpert.com/blog/2007/11/simple-script-to-dynamically-drop-tables/#comments</comments>
		<pubDate>Wed, 07 Nov 2007 20:03:39 +0000</pubDate>
		<dc:creator>ckim</dc:creator>
				<category><![CDATA[PL/SQL]]></category>

		<guid isPermaLink="false">http://www.dbaexpert.com/blog/?p=93</guid>
		<description><![CDATA[define TAB=&#8217;&#38;1&#8242;
declare
cursor c1 is
select table_name
from user_tables
where table_name like &#8216;&#38;TAB%&#8217;;
v_sql varchar2(4000);
begin
for r1 in c1 loop
  v_sql := &#8216;drop table &#8216;&#124;&#124;r1.table_name;
  dbms_output.put_line(v_sql);
  execute immediate v_sql;
end loop;
end;
/
]]></description>
		<wfw:commentRss>http://www.dbaexpert.com/blog/2007/11/simple-script-to-dynamically-drop-tables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
