<?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-BASE Blog Aggregator &#187; An Expert&#8217;s Guide to Oracle Technology</title>
	<atom:link href="http://www.oracle-base.com/aggregator/author/an-experts-guide-to-oracle-technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.oracle-base.com/aggregator</link>
	<description>Blogs I follow...</description>
	<lastBuildDate>Mon, 06 Feb 2012 11:08:59 +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>VArrays 101</title>
		<link>http://it.toolbox.com/blogs/oracle-guide/varrays-101-50237?rss=1</link>
		<comments>http://it.toolbox.com/blogs/oracle-guide/varrays-101-50237?rss=1#comments</comments>
		<pubDate>Tue, 31 Jan 2012 11:09:43 +0000</pubDate>
		<dc:creator>An Expert's Guide to Oracle Technology</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.oracle-base.com/aggregator/?guid=39c488ddb10c79b55e78d40b4ebf3394</guid>
		<description><![CDATA[From&#160;An Expert&#8217;s Guide to Oracle Technology
&#160;
Continuing on in my 101 series - I wrote about associative arrays, nested tables and ]]></description>
			<content:encoded><![CDATA[<p>From&nbsp;<a href="http://it.toolbox.com/blogs/oracle-guide/" >An Expert&rsquo;s Guide to Oracle Technology</a></p>
<p>&nbsp;</p>
<p>Continuing on in my 101 series - I wrote about <a href="http://it.toolbox.com/blogs/oracle-guide/associative-arrays-101-49801" >associative arrays</a>, <a href="http://it.toolbox.com/blogs/oracle-guide/nested-tables-101-50177" >nested tables</a> and <a href="../../../blogs/oracle-guide/record-types-1]]></content:encoded>
			<wfw:commentRss>http://www.oracle-base.com/aggregator/2012/01/31/varrays-101/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nested Tables 101</title>
		<link>http://it.toolbox.com/blogs/oracle-guide/nested-tables-101-50177?rss=1</link>
		<comments>http://it.toolbox.com/blogs/oracle-guide/nested-tables-101-50177?rss=1#comments</comments>
		<pubDate>Thu, 26 Jan 2012 09:55:48 +0000</pubDate>
		<dc:creator>An Expert's Guide to Oracle Technology</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.oracle-base.com/aggregator/?guid=8985cd0bf4376de2195bd7feae2c4adb</guid>
		<description><![CDATA[From&#160;An Expert&#8217;s Guide to Oracle Technology
&#160;
A nested table is much like an associative array but you do not determine the index. The index grows by using the extend command and the index is always an incrementing integer value. You ca...]]></description>
			<content:encoded><![CDATA[<p>From&nbsp;<a href="http://it.toolbox.com/blogs/oracle-guide/" >An Expert&rsquo;s Guide to Oracle Technology</a></p>
<p>&nbsp;</p>
<p>A nested table is much like an <a href="http://it.toolbox.com/blogs/oracle-guide/associative-arrays-101-49801" >associative array</a> but you do not determine the index. The index grows by using the extend command and the index is always an incrementing integer value. You can use the DELETE attribute to delete individual elements so you will always want to]]></content:encoded>
			<wfw:commentRss>http://www.oracle-base.com/aggregator/2012/01/26/nested-tables-101/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Record Types 101</title>
		<link>http://it.toolbox.com/blogs/oracle-guide/record-types-101-50102?rss=1</link>
		<comments>http://it.toolbox.com/blogs/oracle-guide/record-types-101-50102?rss=1#comments</comments>
		<pubDate>Thu, 19 Jan 2012 10:06:37 +0000</pubDate>
		<dc:creator>An Expert's Guide to Oracle Technology</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.oracle-base.com/aggregator/?guid=6d3ce35f0b41b1dd97a6dba247f023fb</guid>
		<description><![CDATA[From&#160;An Expert&#8217;s Guide to Oracle Technology
&#160;
&#160;
A record type is a simple structure that combines multiple datatypes into a single package.
&#160;
DECLARE
  TYPE r_person IS RECORD (
    fname VARCHAR2(30),
    lname VARCHAR2(30),
...]]></description>
			<content:encoded><![CDATA[<p><span>From&nbsp;</span><a href="http://it.toolbox.com/blogs/oracle-guide/" >An Expert&rsquo;s Guide to Oracle Technology</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>A record type is a simple structure that combines multiple datatypes into a single package.</p>
<p>&nbsp;</p>
<pre><code>DECLARE
  TYPE r_person IS RECORD (
    fname VARCHAR2(30),
    lname VARCHAR2(30),
    age NUMBER );
	
  v_person r_person;	
BEGIN

 v_person.fname := 'Lewis';
 v_person.lname := 'Cunningham';
 v_p]]></content:encoded>
			<wfw:commentRss>http://www.oracle-base.com/aggregator/2012/01/19/record-types-101/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2011 in Review and 2012 Goals</title>
		<link>http://it.toolbox.com/blogs/oracle-guide/2011-in-review-and-2012-goals-50003?rss=1</link>
		<comments>http://it.toolbox.com/blogs/oracle-guide/2011-in-review-and-2012-goals-50003?rss=1#comments</comments>
		<pubDate>Tue, 10 Jan 2012 09:59:50 +0000</pubDate>
		<dc:creator>An Expert's Guide to Oracle Technology</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.oracle-base.com/aggregator/?guid=f036fe1e112758819f1a102ef55d532a</guid>
		<description><![CDATA[To get where you want to be in life, you need to have goals. It doesn't matter if you want to advance professionally, improve a hobby or lose weight, goals help you achieve your desires.
&#160;
I think it's important to look back at the previous year a...]]></description>
			<content:encoded><![CDATA[<p>To get where you want to be in life, you need to have goals. It doesn't matter if you want to advance professionally, improve a hobby or lose weight, goals help you achieve your desires.</p>
<p>&nbsp;</p>
<p>I think it's important to look back at the previous year and see how you did as far as your goals. When I see how realistic my previous year goals were, then I can decide how to set my goals for the current year. Unfortunately, I didn't list my goals for 2]]></content:encoded>
			<wfw:commentRss>http://www.oracle-base.com/aggregator/2012/01/10/2011-in-review-and-2012-goals/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ambiguity in SQL</title>
		<link>http://it.toolbox.com/blogs/oracle-guide/ambiguity-in-sql-42366?rss=1</link>
		<comments>http://it.toolbox.com/blogs/oracle-guide/ambiguity-in-sql-42366?rss=1#comments</comments>
		<pubDate>Fri, 05 Nov 2010 08:46:46 +0000</pubDate>
		<dc:creator>An Expert's Guide to Oracle Technology</dc:creator>
		
		<guid isPermaLink="false"></guid>
		<description><![CDATA[I made note of the alias and then scrolled down (waaayyyy down) to the from clause and found the alias. I saw the table and did a describe. The column in the view didn't exist in the table. WTF?!?!?!?!  I scrolled back up and made sure I had the right ...]]></description>
			<content:encoded><![CDATA[I made note of the alias and then scrolled down (waaayyyy down) to the from clause and found the alias. I saw the table and did a describe. The column in the view didn't exist in the table. WTF?!?!?!?!  I scrolled back up and made sure I had the right alias. I did. Scrolled back down, I had the right table. Checked the table, column did not exist! I recompiled the view. No errors. I was freaking out for a while but after I slowed down and rechecked the code I got it figured out. It had never occurred to me that you could even do this.]]></content:encoded>
			<wfw:commentRss>http://www.oracle-base.com/aggregator/2010/11/05/ambiguity-in-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle OpenWorld 2010 Day 3</title>
		<link>http://it.toolbox.com/blogs/oracle-guide/oracle-openworld-2010-day-3-41305?rss=1</link>
		<comments>http://it.toolbox.com/blogs/oracle-guide/oracle-openworld-2010-day-3-41305?rss=1#comments</comments>
		<pubDate>Tue, 21 Sep 2010 10:00:02 +0000</pubDate>
		<dc:creator>An Expert's Guide to Oracle Technology</dc:creator>
		
		<guid isPermaLink="false"></guid>
		<description><![CDATA[From An Expert's Guide to Oracle Technology

This post will be updated throughout the day. Refresh often for updates.

Don't forget to check out my photos on my Flickr stream 

18:00 - Southeast Technology Customer Event

This was a networking session ...]]></description>
			<content:encoded><![CDATA[From <a href="http://it.toolbox.com/blogs/oracle-guide">An Expert's Guide to Oracle Technology</a>

This post will be updated throughout the day. Refresh often for updates.

Don't forget to check out my photos on my <a href="http://www.flickr.com/photos/lewisc/sets/72157624989754880/">Flickr stream</a> 

18:00 - Southeast Technology Customer Event

This was a networking session for Oracle customers from the Southeast US. I'm in Florida. I met quite a few people from various places in Flo]]></content:encoded>
			<wfw:commentRss>http://www.oracle-base.com/aggregator/2010/09/21/oracle-openworld-2010-day-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL Track at ODTUG Kaleidoscope</title>
		<link>http://it.toolbox.com/blogs/oracle-guide/mysql-track-at-odtug-kaleidoscope-38656?rss=1</link>
		<comments>http://it.toolbox.com/blogs/oracle-guide/mysql-track-at-odtug-kaleidoscope-38656?rss=1#comments</comments>
		<pubDate>Wed, 12 May 2010 12:00:01 +0000</pubDate>
		<dc:creator>An Expert's Guide to Oracle Technology</dc:creator>
		
		<guid isPermaLink="false"></guid>
		<description><![CDATA[It looks like MySQL will be making a splash in DC this year at ODTUG Kaleidoscope. The conference organizers have announced a new MySQL track. Is this a good thing? MySQL is not really an Oracle tool, per se. It is, however, an Oracle database. As a da...]]></description>
			<content:encoded><![CDATA[It looks like MySQL will be making a splash in DC this year at ODTUG Kaleidoscope. The conference organizers have announced a new MySQL track. Is this a good thing? MySQL is not really an Oracle tool, per se. It is, however, an Oracle database. As a database geek, and as an Oracle ACE Director, I like it. ]]></content:encoded>
			<wfw:commentRss>http://www.oracle-base.com/aggregator/2010/05/12/mysql-track-at-odtug-kaleidoscope/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

