<?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/"
	
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Eddie Awad&#039;s Blog &#187; Oracle</title>
	<atom:link href="http://awads.net/wp/category/oracle/feed/" rel="self" type="application/rss+xml" />
	<link>http://awads.net/wp</link>
	<description>News, views, tips and tricks on Oracle and other fun stuff</description>
	<lastBuildDate>Tue, 31 Jan 2012 13:00: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>
	<atom:link rel='hub' href='http://awads.net/wp/?pushpress=hub'/>
		<item>
		<title>Developer&#8217;s Toolbox</title>
		<link>http://awads.net/wp/2012/01/31/developers-toolbox/</link>
		<comments>http://awads.net/wp/2012/01/31/developers-toolbox/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 13:00:59 +0000</pubDate>
		<dc:creator>Eddie Awad</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[kscope12]]></category>
		<category><![CDATA[odtug]]></category>

		<guid isPermaLink="false">http://awads.net/wp/?p=2604</guid>
		<description><![CDATA[I had the privilege to be a guest blogger on the ODTUG blog. I wrote about Kscope and my role in putting together the Developer&#8217;s Toolbox track as well as why you should attend Kscope. Here is a short excerpt: This year’s Kscope is a special one to me. I volunteered to lead the Developer’s [...]]]></description>
			<content:encoded><![CDATA[<p>I had the privilege to be a guest blogger on the <a href="http://odtug.wordpress.com">ODTUG blog</a>. I wrote about <a href="http://kscope12.com/">Kscope</a> and my role in putting together the <a href="http://kscope12.com/component/seminar/seminarslist?topicsid=15">Developer&#8217;s Toolbox</a> track as well as why you should attend Kscope. Here is a short excerpt:</p>

<blockquote>This year’s Kscope is a special one to me. I volunteered to lead the Developer’s Toolbox track team. My task was to build a team of volunteers from the Oracle community and then together determine appropriate sub-tracks, review and rate the submitted abstracts and create a draft schedule for the track.</blockquote>

<p>Read the full blog post <a href='http://odtug.wordpress.com/2012/01/23/kscope-12-developer-toolbox/'>here</a>.</p>
<p>Related articles:<ul>
<li><a href='http://awads.net/wp/2009/06/01/the-premier-conference-for-developers-in-the-oracle-community/' rel='bookmark' title='The Premier Conference for Developers in the Oracle Community'>The Premier Conference for Developers in the Oracle Community</a></li>
<li><a href='http://awads.net/wp/2012/01/03/you-should-attend-this/' rel='bookmark' title='You Should Attend This'>You Should Attend This</a></li>
<li><a href='http://awads.net/wp/2010/02/09/15-ways-oracle-can-make-java-better-and-improve-its-stance-with-developers/' rel='bookmark' title='15 Ways Oracle Can Make Java Better (and Improve Its Stance with Developers)'>15 Ways Oracle Can Make Java Better (and Improve Its Stance with Developers)</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://awads.net/wp/2012/01/31/developers-toolbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
	</item>
		<item>
		<title>Interesting Bug</title>
		<link>http://awads.net/wp/2012/01/24/interesting-bug/</link>
		<comments>http://awads.net/wp/2012/01/24/interesting-bug/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 17:58:19 +0000</pubDate>
		<dc:creator>Eddie Awad</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[database]]></category>

		<guid isPermaLink="false">http://awads.net/wp/?p=2592</guid>
		<description><![CDATA[Michael posted a comment on Martin&#8217;s blog, that I previously quoted, about a &#8220;hack&#8221; to add a comment on a default value definition. Here is an example of how it works (tested in 11.2.0.1): SQL&#62; CREATE TABLE t ( 2 x VARCHAR2 (10) DEFAULT 'Hi' -- There. This will be stored too. 3 ); Table [...]]]></description>
			<content:encoded><![CDATA[<p>Michael posted a <a href="http://mwidlake.wordpress.com/2011/11/24/lack-of-index-and-constraint-comments/#comment-2134">comment</a> on Martin&#8217;s blog, that I previously <a href="http://awads.net/wp/2012/01/24/comments-on-constraints-and-indexes-in-the-database-a-good-idea/">quoted</a>, about a &#8220;hack&#8221; to add a comment on a default value definition. Here is an example of how it works (tested in 11.2.0.1):</p>

<pre><code>  SQL&gt; CREATE TABLE t (
    2     x VARCHAR2 (10) DEFAULT 'Hi' -- There. This will be stored too.
    3  );

  Table created.
</code></pre>

<p>Notice the comment after the default value. The comment would be ignored, right? think again:</p>

<pre><code>  SQL&gt; COLUMN column_name FORMAT a14
  SQL&gt; COLUMN data_default FORMAT a40
  SQL&gt; SELECT column_name, data_default
    2    FROM user_tab_columns
    3   WHERE table_name = 'T';

  COLUMN_NAME    DATA_DEFAULT
  -------------- ----------------------------------------
  X              'Hi' -- There. This will be stored too.

  1 row selected.
</code></pre>

<p>Well, basically this is <a href="https://support.oracle.com/CSP/main/article?cmd=show&#038;type=BUG&#038;id=8546537&#038;productFamily=Oracle">bug 8546537</a>:</p>

<blockquote>
When trying to add a COMMENT to a table, if the &#8216;)&#8217; is on a new line, then the COMMENT is successfuly created when an error should be raised. The COMMENT also makes it to the Data Dictionary. If the &#8216;)&#8217; is on the same line, an error is raised.
</blockquote>

<p>Interesting!</p>
<p>Related articles:<ul>
<li><a href='http://awads.net/wp/2005/10/13/pre-defined-collection-types-in-oracle/' rel='bookmark' title='Pre-defined collection types in Oracle'>Pre-defined collection types in Oracle</a></li>
<li><a href='http://awads.net/wp/2005/11/29/oracle-sql-tip/' rel='bookmark' title='Oracle SQL tip'>Oracle SQL tip</a></li>
<li><a href='http://awads.net/wp/2006/01/25/savingdownloading-files-tofrom-oracle-using-coldfusion/' rel='bookmark' title='Saving/Downloading files to/from Oracle using ColdFusion'>Saving/Downloading files to/from Oracle using ColdFusion</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://awads.net/wp/2012/01/24/interesting-bug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
	</item>
		<item>
		<title>Comments on Constraints and Indexes in the Database, a Good Idea?</title>
		<link>http://awads.net/wp/2012/01/24/comments-on-constraints-and-indexes-in-the-database-a-good-idea/</link>
		<comments>http://awads.net/wp/2012/01/24/comments-on-constraints-and-indexes-in-the-database-a-good-idea/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 16:57:19 +0000</pubDate>
		<dc:creator>Eddie Awad</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[enhancement]]></category>

		<guid isPermaLink="false">http://awads.net/wp/?p=2582</guid>
		<description><![CDATA[Martin Widlake thinks so: Comments are great, you can put 4000 characters of information into the database about each table, view and column. This can be a brief description of the object, a full explanation of what a column is to hold or even a list of typical entries for a column or table. But [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://mwidlake.wordpress.com/2011/11/24/lack-of-index-and-constraint-comments/">Martin Widlake</a> thinks so:</p>

<blockquote>Comments are great, you can put 4000 characters of information into the database about each table, view and column. This can be a brief description of the object, a full explanation of what a column is to hold or even a list of typical entries for a column or table.

But you can’t add a comment on indexes or constraints. Why would I want to? Well, constraints and indexes should only be there for a reason and the reason is not always obvious from either the names of the columns or the name of the constraint or index, especially where you have a naming standard that forces you to name indexes and constraints after the columns they reference.
</blockquote>

<p>He goes on to explain the advantages:</p>

<blockquote>
If I was able to add comments to constraints and indexes within the database then they would there. You move the system from one platform to the other, they are there. If for any wildly unlikely reason the central documentation lets you down, the information is always there in the database and easy to check. You may not be able to track down the original design documents but you have the database in front of you, so comments in that will persist and be very easy to find.
</blockquote>

<p>Martin raises very good points. I believe that it would be a useful feature to have in a future database version.</p>
<p>Related articles:<ul>
<li><a href='http://awads.net/wp/2005/08/15/triggers-and-constraints/' rel='bookmark' title='Triggers and Constraints'>Triggers and Constraints</a></li>
<li><a href='http://awads.net/wp/2010/02/15/oracle-database-limits-you-may-not-know-about/' rel='bookmark' title='Oracle Database Limits You May Not Know About'>Oracle Database Limits You May Not Know About</a></li>
<li><a href='http://awads.net/wp/2007/10/09/beware-of-comments-in-sql/' rel='bookmark' title='Beware of Comments in SQL'>Beware of Comments in SQL</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://awads.net/wp/2012/01/24/comments-on-constraints-and-indexes-in-the-database-a-good-idea/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
	</item>
		<item>
		<title>You Should Attend This</title>
		<link>http://awads.net/wp/2012/01/03/you-should-attend-this/</link>
		<comments>http://awads.net/wp/2012/01/03/you-should-attend-this/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 19:47:32 +0000</pubDate>
		<dc:creator>Eddie Awad</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[kscope12]]></category>
		<category><![CDATA[odtug]]></category>

		<guid isPermaLink="false">http://awads.net/wp/?p=2548</guid>
		<description><![CDATA[Happy New Year! One of the events I am looking forward to this year is ODTUG Kscope12. For those of you who have attended Kscope before, you know how much value you can get out of this conference. For those of you who don&#8217;t know what Kscope is, here is a quick introduction for you: [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://awads.net/wp/wp-content/uploads/2012/01/kscope12.png" alt="" title="kscope12" width="249" height="92" class="alignright size-full wp-image-2559" />Happy New Year!</p>

<p>One of the events I am looking forward to this year is ODTUG Kscope12. For those of you who have attended Kscope before, you know how much value you can get out of this conference. For those of you who don&#8217;t know what Kscope is, here is a quick <a href="http://kscope12.com/">introduction</a> for you:</p>

<blockquote>
  <p>If you are a developer, architect, technical lead, or database administrator who works with Application Express, Business Intelligence, Oracle EPM; including Hyperion products, Essbase, Planning; Database Development or Fusion Middleware, Kscope12 is where you should be. It’s hard to find a conference that’s big enough to attract world renowned speakers and small enough to get the chance to share knowledge. Kscope12 is that conference.</p>
</blockquote>

<p>This year, I will be <a href="http://kscope12.com/component/seminar/seminarslist#See How Easily You Can Improve Performance By Using These Four Data Caching Techniques">presenting</a> about data caching at <a href="http://kscope12.com/">Kscope12</a>.</p>

<p><span id="more-2548"></span></p>

<p>Caching is commonly used to optimize access to data that is static for a period of time. You will learn how to apply SQL and PL/SQL data caching techniques that will considerably improve the performance of your queries and programs.</p>

<p>Here is the abstract of my presentation:</p>

<p><strong>Title</strong>: See How Easily You Can Improve Performance By Using These Four Data Caching Techniques</p>

<p><strong>Detail</strong>: This presentation covers the following four database server caching techniques:</p>

<ul>
<li>SQL Query Result Cache</li>
<li>PL/SQL Function Result Cache</li>
<li>Package-Based Cache</li>
<li>Deterministic Function Cache</li>
</ul>

<p>I will show you how to use them and look at the pros and cons of each, use cases, gotchas and more.</p>

<p>Check out all the Kscope12 presentations by topic area:</p>

<ul>
<li><a href="http://kscope12.com/component/seminar/seminarslist?topicsid=14">Application Express</a></li>
<li><a href="http://kscope12.com/component/seminar/seminarslist?topicsid=20">Database</a></li>
<li><a href="http://kscope12.com/component/seminar/seminarslist?topicsid=15">Developer&#8217;s Toolbox</a></li>
<li><a href="http://kscope12.com/component/seminar/seminarslist?topicsid=17">Business Intelligence</a></li>
<li><a href="http://kscope12.com/component/seminar/seminarslist?topicsid=12">Essbase</a></li>
<li><a href="http://kscope12.com/component/seminar/seminarslist?topicsid=11">Hyperion Applications</a></li>
<li><a href="http://kscope12.com/component/seminar/seminarslist?topicsid=18">EPM Business Content</a></li>
<li><a href="http://kscope12.com/component/seminar/seminarslist?topicsid=25">Essbase Beginner</a></li>
<li><a href="http://kscope12.com/component/seminar/seminarslist?topicsid=16">Fusion Middleware</a></li>
</ul>

<p>This year, Kscope is going to be held in San Antonio, Texas at the <a href="http://kscope12.com/location">JW Marriott Hill Country Resort</a>.</p>

<p><a href="http://kscope12.com/registration">Register</a> now. See you there.</p>
<p>Related articles:<ul>
<li><a href='http://awads.net/wp/2007/08/15/oracle-openworld-2007/' rel='bookmark' title='Oracle OpenWorld 2007'>Oracle OpenWorld 2007</a></li>
<li><a href='http://awads.net/wp/2006/05/25/oracle-opens-registration-for-openworld-san-francisco-2006/' rel='bookmark' title='Oracle Opens Registration for OpenWorld San Francisco 2006'>Oracle Opens Registration for OpenWorld San Francisco 2006</a></li>
<li><a href='http://awads.net/wp/2010/09/19/4-ways-to-follow-breaking-news-and-happenings-from-oracle-openworld-2010-oow10/' rel='bookmark' title='4 Ways to Follow Breaking News and Happenings from Oracle OpenWorld 2010 #oow10'>4 Ways to Follow Breaking News and Happenings from Oracle OpenWorld 2010 #oow10</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://awads.net/wp/2012/01/03/you-should-attend-this/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:thumbnail url="http://awads.net/wp/wp-content/uploads/2012/01/kscope12-150x92.png" />
		<media:content url="http://awads.net/wp/wp-content/uploads/2012/01/kscope12.png" medium="image">
			<media:title type="html">kscope12</media:title>
			<media:thumbnail url="http://awads.net/wp/wp-content/uploads/2012/01/kscope12-150x92.png" />
		</media:content>
	</item>
		<item>
		<title>Five Recently Created or Updated Oracle Support Articles</title>
		<link>http://awads.net/wp/2011/12/07/five-recently-created-or-updated-oracle-support-articles-2/</link>
		<comments>http://awads.net/wp/2011/12/07/five-recently-created-or-updated-oracle-support-articles-2/#comments</comments>
		<pubDate>Wed, 07 Dec 2011 15:15:57 +0000</pubDate>
		<dc:creator>Eddie Awad</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[support]]></category>

		<guid isPermaLink="false">http://awads.net/wp/?p=2400</guid>
		<description><![CDATA[Here are five interesting My Oracle Support articles that were recently created or updated: How To Create Users Like Another User In Oracle Database At SQL Command Line, Not From OEM Master Note For Oracle Database Auditing How to Monitor Password Change History How to Change Online Help in Apex 4.1 Which is a Link to [...]]]></description>
			<content:encoded><![CDATA[<div>Here are five interesting My Oracle Support articles that were recently created or updated:</div>

<ul>
    <li><a href="https://support.oracle.com/CSP/main/article?cmd=show&amp;type=NOT&amp;doctype=HOWTO&amp;id=1352212.1">How To Create Users Like Another User In Oracle Database At SQL Command Line, Not From OEM</a></li>
    <li><a href="https://support.oracle.com/CSP/main/article?cmd=show&amp;type=NOT&amp;doctype=BULLETIN&amp;id=1299033.1">Master Note For Oracle Database Auditing</a></li>
    <li><a href="https://support.oracle.com/CSP/main/article?cmd=show&amp;type=NOT&amp;doctype=HOWTO&amp;id=364280.1">How to Monitor Password Change History</a></li>
    <li><a href="https://support.oracle.com/CSP/main/article?cmd=show&amp;type=NOT&amp;doctype=HOWTO&amp;id=1352611.1">How to Change Online Help in Apex 4.1 Which is a Link to the Online Documentation on OTN</a></li>
    <li><a href="https://support.oracle.com/CSP/main/article?cmd=show&amp;type=NOT&amp;doctype=BULLETIN&amp;id=300729.1">What is IP=FIRST in the LISTENER.ORA file?</a></li>
</ul>

<div><em>My Oracle Support account is required to view articles.</em></div>
<p>Related articles:<ul>
<li><a href='http://awads.net/wp/2011/11/29/five-recently-created-or-updated-oracle-support-articles/' rel='bookmark' title='Five Recently Created or Updated Oracle Support Articles'>Five Recently Created or Updated Oracle Support Articles</a></li>
<li><a href='http://awads.net/wp/2005/07/04/tom-kytes-oracle-magazine-articles-archive/' rel='bookmark' title='Tom Kyte&#8217;s Oracle magazine articles archive'>Tom Kyte&#8217;s Oracle magazine articles archive</a></li>
<li><a href='http://awads.net/wp/2011/02/22/oracle%e2%80%99s-vmware-support-policy-like-jekyll-and-hyde/' rel='bookmark' title='Oracle’s VMware support policy like Jekyll and Hyde'>Oracle’s VMware support policy like Jekyll and Hyde</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://awads.net/wp/2011/12/07/five-recently-created-or-updated-oracle-support-articles-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
	</item>
		<item>
		<title>Upgrading from Oracle E-business Suite to Fusion Apps</title>
		<link>http://awads.net/wp/2011/12/06/upgrading-from-oracle-e-business-suite-to-fusion-apps/</link>
		<comments>http://awads.net/wp/2011/12/06/upgrading-from-oracle-e-business-suite-to-fusion-apps/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 14:30:16 +0000</pubDate>
		<dc:creator>Eddie Awad</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[EBS]]></category>
		<category><![CDATA[fusion]]></category>

		<guid isPermaLink="false">http://awads.net/wp/?p=2525</guid>
		<description><![CDATA[Debra Lilley: There is a third issue, after support cost, and availability, there is the big issue around the upgrade path. Oracle have always said that there would be an upgrade path from the latest two releases which at the time was 11.5.10 and 12.0, but now we also have 12.1 so there is only [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://debrasoracle.blogspot.com/2011/11/ebs-extended-support.html'>Debra Lilley</a>:</p>

<blockquote>There is a third issue, after support cost, and availability, there is the big issue around the upgrade path. Oracle have always said that there would be an upgrade path from the latest two releases which at the time was 11.5.10 and 12.0, but now we also have 12.1 so there is only a path from 12.0 onwards. Is this fair, well I am not sure, in most cases I see the move to Fusion Apps as a replacement is not the best thing for an organisation, especially one who has not already moved to R12, so not having the option is not a problem. 
<br/>
[...] 
<br/>
I think a lot of people will take Fusion but in small steps, taking the co-existence route, after perhaps adopting some technology first, over time. </blockquote>
<p>Related articles:<ul>
<li><a href='http://awads.net/wp/2011/07/21/how-to-create-and-use-custom-business-events-in-oracle-e-business-suite/' rel='bookmark' title='How To Create and Use Custom Business Events in Oracle E-Business Suite'>How To Create and Use Custom Business Events in Oracle E-Business Suite</a></li>
<li><a href='http://awads.net/wp/2006/05/05/oracle-e-business-suite-technology-stack-and-products-cheat-sheet/' rel='bookmark' title='Oracle E-Business Suite technology stack and products cheat sheet'>Oracle E-Business Suite technology stack and products cheat sheet</a></li>
<li><a href='http://awads.net/wp/2006/12/12/oracle-e-business-suite-vulnerability-users-passwords-decrypted/' rel='bookmark' title='Oracle E-Business Suite Vulnerability: Users Passwords Decrypted'>Oracle E-Business Suite Vulnerability: Users Passwords Decrypted</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://awads.net/wp/2011/12/06/upgrading-from-oracle-e-business-suite-to-fusion-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
	</item>
		<item>
		<title>Why You Must Use an ORDER BY Sometimes</title>
		<link>http://awads.net/wp/2011/11/30/why-you-must-use-an-order-by-sometimes/</link>
		<comments>http://awads.net/wp/2011/11/30/why-you-must-use-an-order-by-sometimes/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 15:30:19 +0000</pubDate>
		<dc:creator>Eddie Awad</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://awads.net/wp/?p=2486</guid>
		<description><![CDATA[Suresh submitted this question on the Oracle Community forum: in oracle 10 g , the below query results in alphabetical order , there is no order by caluse. but when i am running the same query in oracle 11g , it gives me in random order. what is the problem here? People, it is really [...]]]></description>
			<content:encoded><![CDATA[<p>Suresh submitted this <a href="http://www.oraclecommunity.net/forum/topics/order-by-clause">question</a> on the <a href="http://www.oraclecommunity.net/">Oracle Community</a> forum:</p>

<blockquote>
  <p>in oracle 10 g , the below query results in alphabetical order , there is no order by caluse. but when i am running the same query in oracle 11g , it gives me in random order. what is the problem here?</p>
</blockquote>

<p>People, it is really simple: You want an ordered result set? use ORDER BY.</p>

<p>Tom Kyte wrote about it in this <a href="http://tkyte.blogspot.com/2005/08/order-in-court.html">blog post</a> and in his books:</p>

<blockquote>
  <p>Do not ever count on the order of rows from a query unless you have an ORDER BY statement on your query!</p>
  
  <p>The only way to retrieve data from the database in some sorted order is to include an ORDER BY on your query. There is no substitute for ORDER BY.</p>
</blockquote>

<p>By the way, the query in the forum post looks suspiciously <a href="http://www.hibernate.org/">Hibernated</a>. Don&#8217;t let <a href="http://jeffkemponoracle.com/2011/11/25/3-reasons-to-hate-hibernate/">Jeff</a> know <img src='http://awads.net/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Related articles:<ul>
<li><a href='http://awads.net/wp/2005/08/09/order-by-no-order/' rel='bookmark' title='ORDER BY no order'>ORDER BY no order</a></li>
<li><a href='http://awads.net/wp/2006/04/04/a-binary-flag-with-three-values/' rel='bookmark' title='A binary flag with three values'>A binary flag with three values</a></li>
<li><a href='http://awads.net/wp/2007/04/22/introducing-stumble-upon-a-post/' rel='bookmark' title='Introducing: Stumble Upon a Post'>Introducing: Stumble Upon a Post</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://awads.net/wp/2011/11/30/why-you-must-use-an-order-by-sometimes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
	</item>
		<item>
		<title>Five Recently Created or Updated Oracle Support Articles</title>
		<link>http://awads.net/wp/2011/11/29/five-recently-created-or-updated-oracle-support-articles/</link>
		<comments>http://awads.net/wp/2011/11/29/five-recently-created-or-updated-oracle-support-articles/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 15:30:54 +0000</pubDate>
		<dc:creator>Eddie Awad</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[support]]></category>

		<guid isPermaLink="false">http://awads.net/wp/?p=2471</guid>
		<description><![CDATA[Here are five interesting My Oracle Support articles that were recently created or updated: Master Note: Database Performance Overview FAQ: Database Performance Frequently Asked Questions New Parameter DB_ULTRA_SAFE introduced in 11g How To Get Access To Help- Examine &#8211; Custom Code- Personalizations in R12.1.3 Russia abandons DST in 2011 &#8211; Impact on Oracle RDBMS My Oracle [...]]]></description>
			<content:encoded><![CDATA[<div>Here are five interesting My Oracle Support articles that were recently created or updated:</div>

<ul>
    <li><a href="https://support.oracle.com/CSP/main/article?cmd=show&amp;type=NOT&amp;doctype=FAQ&amp;id=402983.1">Master Note: Database Performance Overview</a></li>
    <li><a href="https://support.oracle.com/CSP/main/article?cmd=show&amp;type=NOT&amp;doctype=FAQ&amp;id=1360119.1">FAQ: Database Performance Frequently Asked Questions</a></li>
    <li><a href="https://support.oracle.com/CSP/main/article?cmd=show&amp;type=NOT&amp;doctype=REFERENCE&amp;id=465130.1">New Parameter DB_ULTRA_SAFE introduced in 11g</a></li>
    <li><a href="https://support.oracle.com/CSP/main/article?cmd=show&amp;type=NOT&amp;doctype=HOWTO&amp;id=1326099.1">How To Get Access To Help- Examine &#8211; Custom Code- Personalizations in R12.1.3</a></li>
    <li><a href="https://support.oracle.com/CSP/main/article?cmd=show&amp;type=NOT&amp;doctype=BULLETIN&amp;id=1335999.1">Russia abandons DST in 2011 &#8211; Impact on Oracle RDBMS</a></li>
</ul>

<div><em>My Oracle Support account is required to view articles.</em></div>
<p>Related articles:<ul>
<li><a href='http://awads.net/wp/2011/12/07/five-recently-created-or-updated-oracle-support-articles-2/' rel='bookmark' title='Five Recently Created or Updated Oracle Support Articles'>Five Recently Created or Updated Oracle Support Articles</a></li>
<li><a href='http://awads.net/wp/2008/10/28/my-oracle-support-community-to-launch-soon/' rel='bookmark' title='My Oracle Support Community to Launch Soon'>My Oracle Support Community to Launch Soon</a></li>
<li><a href='http://awads.net/wp/2011/02/22/oracle%e2%80%99s-vmware-support-policy-like-jekyll-and-hyde/' rel='bookmark' title='Oracle’s VMware support policy like Jekyll and Hyde'>Oracle’s VMware support policy like Jekyll and Hyde</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://awads.net/wp/2011/11/29/five-recently-created-or-updated-oracle-support-articles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
	</item>
		<item>
		<title>What is the Oracle Learning Library?</title>
		<link>http://awads.net/wp/2011/11/21/what-is-the-oracle-learning-library/</link>
		<comments>http://awads.net/wp/2011/11/21/what-is-the-oracle-learning-library/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 19:45:36 +0000</pubDate>
		<dc:creator>Eddie Awad</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://awads.net/wp/?p=2427</guid>
		<description><![CDATA[It&#8217;s a really useful resource. The Oracle Learning Library allows you to search for free online learning content on the internet. The content comes from a variety of sources, including OTN, YouTube and Blogs. Check it out at oracle.com/oll Related articles: 5 interesting things you may have missed on Feb 16, 2011 SQL Indexing Video [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s a really useful resource. The <a href="http://apex.oracle.com/pls/apex/f?p=44785:1"> Oracle Learning Library</a> allows you to search for free online learning content on the internet. The content comes from a variety of sources, including <a href="http://otn.oracle.com">OTN</a>, YouTube and Blogs.</p>

<p><span id="more-2427"></span></p>

<span style="text-align:center; display: block;"><a href="http://awads.net/wp/2011/11/21/what-is-the-oracle-learning-library/"><img src="http://img.youtube.com/vi/qCGmCyd6Dq8/2.jpg" alt="" /></a></span>

<p>Check it out at <a href="http://apex.oracle.com/pls/apex/f?p=44785:1">oracle.com/oll</a></p>
<p>Related articles:<ul>
<li><a href='http://awads.net/wp/2011/02/16/5-interesting-things-you-may-have-missed-on-feb-16-2011/' rel='bookmark' title='5 interesting things you may have missed on Feb 16, 2011'>5 interesting things you may have missed on Feb 16, 2011</a></li>
<li><a href='http://awads.net/wp/2009/01/23/sql-indexing-video/' rel='bookmark' title='SQL Indexing Video'>SQL Indexing Video</a></li>
<li><a href='http://awads.net/wp/2009/02/13/oracle-database-architecture-in-less-than-10-minutes-video/' rel='bookmark' title='Oracle Database Architecture in Less than 10 Minutes (Video)'>Oracle Database Architecture in Less than 10 Minutes (Video)</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://awads.net/wp/2011/11/21/what-is-the-oracle-learning-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://img.youtube.com/vi/qCGmCyd6Dq8/2.jpg" />
		<media:content url="http://img.youtube.com/vi/qCGmCyd6Dq8/2.jpg" medium="image" />
	</item>
		<item>
		<title>Using Web Services in Oracle Application Express [video]</title>
		<link>http://awads.net/wp/2011/10/21/using-web-services-in-oracle-application-express-video/</link>
		<comments>http://awads.net/wp/2011/10/21/using-web-services-in-oracle-application-express-video/#comments</comments>
		<pubDate>Fri, 21 Oct 2011 17:25:52 +0000</pubDate>
		<dc:creator>Eddie Awad</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[apex]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[webservice]]></category>

		<guid isPermaLink="false">http://awads.net/wp/?p=2410</guid>
		<description><![CDATA[Have you utilized SOAP or RESTful Web Services in your Oracle Application Express application? If not, Marcie Young, consulting curriculum developer at Oracle, shows you how. It&#8217;s easy and all wizard driven [Docs]. In the following three screencasts, Marcie goes through the steps to create and use a manual SOAP Web Service reference as well [...]]]></description>
			<content:encoded><![CDATA[<p>Have you utilized <a href="http://en.wikipedia.org/wiki/SOAP">SOAP</a> or <a href="http://en.wikipedia.org/wiki/Representational_state_transfer">RESTful</a> Web Services in your <a href="http://apex.oracle.com">Oracle Application Express</a> application? If not, Marcie Young, consulting curriculum developer at Oracle, shows you how. It&#8217;s easy and all wizard driven [<a href="http://download.oracle.com/docs/cd/E23903_01/doc/doc.41/e21674/advnc_web_services.htm">Docs</a>].</p>

<p>In the following three screencasts, Marcie goes through the steps to create and use a manual SOAP Web Service reference as well as a RESTful Web Service reference with and without a bind variable.</p>

<p><span id="more-2410"></span></p>

<p>Manual SOAP Web Service:</p>

<iframe width="560" height="315" src="http://www.youtube.com/embed/9zcgJWnaR7w" frameborder="0" allowfullscreen></iframe>

<p><br />
RESTful Web Service Reference with an XML Response:</p>

<iframe width="560" height="315" src="http://www.youtube.com/embed/QaTZlRNt-R4" frameborder="0" allowfullscreen></iframe>

<p><br />
RESTful Web Service Reference with an XML Response and a Bind Variable:</p>

<iframe width="560" height="315" src="http://www.youtube.com/embed/k11ctyROjGE" frameborder="0" allowfullscreen></iframe>

<p><br />
Update: The above demos are now posted on the <a href="https://apex.oracle.com/pls/apex/f?p=44785:24:1899594218931749::NO::P24_CONTENT_ID,P24_PREV_PAGE:5818,1">Oracle Learning Library</a>.</p>
<p>Related articles:<ul>
<li><a href='http://awads.net/wp/2007/07/24/get-all-the-cool-new-features-of-oracle-application-express-30-in-oracle-database-xe/' rel='bookmark' title='Get All the Cool New Features of Oracle Application Express 3.0 in Oracle Database XE'>Get All the Cool New Features of Oracle Application Express 3.0 in Oracle Database XE</a></li>
<li><a href='http://awads.net/wp/2011/09/20/create-an-application-to-upload-files-using-oracle-apex-in-less-than-10-minutes-video/' rel='bookmark' title='Create an Application to Upload Files Using Oracle APEX, In Less Than 10 Minutes (Video)'>Create an Application to Upload Files Using Oracle APEX, In Less Than 10 Minutes (Video)</a></li>
<li><a href='http://awads.net/wp/2006/04/03/i-use-oracle-database-10g-express-edition-to/' rel='bookmark' title='I use Oracle Database 10g Express Edition to &#8230;'>I use Oracle Database 10g Express Edition to &#8230;</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://awads.net/wp/2011/10/21/using-web-services-in-oracle-application-express-video/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
	</item>
	</channel>
</rss>

