<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Pre-defined collection types in Oracle</title>
	<atom:link href="http://awads.net/wp/2005/10/13/pre-defined-collection-types-in-oracle/feed/" rel="self" type="application/rss+xml" />
	<link>http://awads.net/wp/2005/10/13/pre-defined-collection-types-in-oracle/</link>
	<description>News, views, tips and tricks on Oracle and other fun stuff</description>
	<lastBuildDate>Thu, 18 Mar 2010 16:44:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Eddie Awad</title>
		<link>http://awads.net/wp/2005/10/13/pre-defined-collection-types-in-oracle/comment-page-1/#comment-1252</link>
		<dc:creator>Eddie Awad</dc:creator>
		<pubDate>Tue, 24 Jan 2006 20:05:59 +0000</pubDate>
		<guid isPermaLink="false">http://awads.net/wp/?p=144#comment-1252</guid>
		<description>&lt;p&gt;Handy indeed. Thanks William.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Handy indeed. Thanks William.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: William Robertson</title>
		<link>http://awads.net/wp/2005/10/13/pre-defined-collection-types-in-oracle/comment-page-1/#comment-1249</link>
		<dc:creator>William Robertson</dc:creator>
		<pubDate>Tue, 24 Jan 2006 18:13:48 +0000</pubDate>
		<guid isPermaLink="false">http://awads.net/wp/?p=144#comment-1249</guid>
		<description>&lt;p&gt;Handy query for reminding yourself what collection types are available (predefined or otherwise):&lt;/p&gt;

&lt;pre&gt;SELECT ct.owner, ct.type_name, ct.elem_type_name, ct.length
FROM   all_coll_types ct
     , all_types ot
WHERE  ct.coll_type = &#039;TABLE&#039;
AND    ot.type_name(+) = ct.elem_type_name
AND    ot.owner(+) = ct.elem_type_owner
AND    ot.type_name IS NULL
ORDER BY ct.owner, ct.type_name;&lt;/pre&gt;
</description>
		<content:encoded><![CDATA[<p>Handy query for reminding yourself what collection types are available (predefined or otherwise):</p>

<pre>SELECT ct.owner, ct.type_name, ct.elem_type_name, ct.length
FROM   all_coll_types ct
     , all_types ot
WHERE  ct.coll_type = 'TABLE'
AND    ot.type_name(+) = ct.elem_type_name
AND    ot.owner(+) = ct.elem_type_owner
AND    ot.type_name IS NULL
ORDER BY ct.owner, ct.type_name;</pre>]]></content:encoded>
	</item>
</channel>
</rss>
