<?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>Cogniza &#187; PL/SQL</title>
	<atom:link href="http://cogniza.com/wordpress/tag/plsql/feed/" rel="self" type="application/rss+xml" />
	<link>http://cogniza.com/wordpress</link>
	<description>Business-Intelligence Specialists</description>
	<lastBuildDate>Sat, 30 Apr 2011 13:22:21 +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>Oracle: Object Dependencies</title>
		<link>http://cogniza.com/wordpress/2005/11/20/oracle-object-dependencies/</link>
		<comments>http://cogniza.com/wordpress/2005/11/20/oracle-object-dependencies/#comments</comments>
		<pubDate>Mon, 21 Nov 2005 00:22:24 +0000</pubDate>
		<dc:creator>Craig Buchanan</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[PL/SQL]]></category>

		<guid isPermaLink="false">http://www.cogniza.com/blog/?p=28</guid>
		<description><![CDATA[SQL query that lists Oracle views and functions and the functions and tables that are contained in them.]]></description>
			<content:encoded><![CDATA[<p>This article demonstrates a SQL query that lists Oracle views and functions and the functions and tables that are contained in them.</p>
<p><span id="more-28"></span> <code><br />
SELECT  OBJECT_TYPE,OWNER,NAME<br />
,REFERENCED_TYPE REF_OBJECT_TYPE<br />
,REFERENCED_OWNER REF_OWNER<br />
,REFERENCED_NAME REF_NAME<br />
FROM	ALL_DEPENDENCIES<br />
WHERE	TYPE IN ('VIEW','FUNCTION')	--show views and functions<br />
--show the functions and tables that they contain<br />
AND	REFERENCED_TYPE IN ('FUNCTION','TABLE')<br />
ORDER BY 1,2,3;<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://cogniza.com/wordpress/2005/11/20/oracle-object-dependencies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

