<?xml version="1.0" encoding="iso-8859-1" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>MattsBits - Oracle</title>
    <link>http://www.mattsbits.co.uk/cat-3.html</link>
    <description>This category contains all articles related to PLSQL, BI Publisher and other Oracle technologies.</description>
    <language>en-gb</language>
    <generator>MattHawkins CMS v3.0</generator>
    <copyright>Copyright 2009-2012</copyright>
    <webMaster>webmaster@mattsbits.co.uk (MattsBits Webmaster)</webMaster>
    <image>
      <url>http://www.mattsbits.co.uk/ncms-images/page_furniture/mattsbits/rss_100x100.png</url>
      <title>MattsBits - Oracle</title>
      <link>http://www.mattsbits.co.uk/cat-3.html</link>
    </image>
    <atom:link href="http://www.mattsbits.co.uk/ncms_feeds/rss2_cat_3.xml" rel="self" type="application/rss+xml" />
    <item>
     <title>Common User and Group LDAP Attributes</title>
     <link>http://www.mattsbits.co.uk/item-118.html</link>
     <description>
     <![CDATA[Lightweight Directory Access Protocol (LDAP) is a network protocol for managing directories often used to implement user databases or telephone directories. Here is a list of common LDAP attributes.]]></description>
     <category>Oracle</category>
     <pubDate>Tue, 14 Jun 2011 10:12:00 +0000</pubDate>
     <guid isPermaLink="true">http://www.mattsbits.co.uk/item-118.html</guid>
    </item>
    <item>
     <title>Find Pages With No Items In Oracle Portal</title>
     <link>http://www.mattsbits.co.uk/item-111.html</link>
     <description>
     <![CDATA[To track down pages in Oracle Portal that contain no content you can use the following query. It counts items on a specified page and all its subpages. Those with a count of zero can be identified.]]></description>
     <category>Oracle</category>
     <pubDate>Tue, 12 Apr 2011 14:00:00 +0000</pubDate>
     <guid isPermaLink="true">http://www.mattsbits.co.uk/item-111.html</guid>
    </item>
    <item>
     <title>Bulk Delete Empty Pages In Oracle Portal Using PLSQL</title>
     <link>http://www.mattsbits.co.uk/item-114.html</link>
     <description>
     <![CDATA[When users have created hundreds of pages it is useful to be able to delete empty pages without have to search for them individually. This script can identify and delete empty pages using PLSQL.]]></description>
     <category>Oracle</category>
     <pubDate>Tue, 05 Apr 2011 11:28:00 +0000</pubDate>
     <guid isPermaLink="true">http://www.mattsbits.co.uk/item-114.html</guid>
    </item>
    <item>
     <title>Return List of All Sub Pages In Oracle Portal</title>
     <link>http://www.mattsbits.co.uk/item-112.html</link>
     <description>
     <![CDATA[The following query can be used to return all the Oracle Portal pages within a particular page branch, including the level at which they appear in the tree.]]></description>
     <category>Oracle</category>
     <pubDate>Fri, 01 Apr 2011 08:21:00 +0000</pubDate>
     <guid isPermaLink="true">http://www.mattsbits.co.uk/item-112.html</guid>
    </item>
    <item>
     <title>Count The Number Of Sub-pages On a Page In Oracle Portal</title>
     <link>http://www.mattsbits.co.uk/item-92.html</link>
     <description>
     <![CDATA[The following PLSQL code creates a database function that counts the number of sub-pages on a page (folder) in Oracle Portal. This function can then be called whenever a sub-page count is required.]]></description>
     <category>Oracle</category>
     <pubDate>Mon, 14 Mar 2011 20:21:00 +0000</pubDate>
     <guid isPermaLink="true">http://www.mattsbits.co.uk/item-92.html</guid>
    </item>
    <item>
     <title>Count The Number Of Items On a Page In Oracle Portal</title>
     <link>http://www.mattsbits.co.uk/item-91.html</link>
     <description>
     <![CDATA[The following PLSQL code creates a database function that counts the number of items on a page in Oracle Portal. This function can then be called whenever an item count is required.]]></description>
     <category>Oracle</category>
     <pubDate>Mon, 14 Mar 2011 20:20:00 +0000</pubDate>
     <guid isPermaLink="true">http://www.mattsbits.co.uk/item-91.html</guid>
    </item>
    <item>
     <title>Generate Oracle Error Codes In PLSQL</title>
     <link>http://www.mattsbits.co.uk/item-90.html</link>
     <description>
     <![CDATA[While developing Oracle applications you may come across any number of error codes. The following PLSQL code can generate the appropriate error message for a group of error codes.]]></description>
     <category>Oracle</category>
     <pubDate>Wed, 02 Feb 2011 22:40:00 +0000</pubDate>
     <guid isPermaLink="true">http://www.mattsbits.co.uk/item-90.html</guid>
    </item>
    <item>
     <title>Converting Delimited Lists To Tables In Oracle PLSQL</title>
     <link>http://www.mattsbits.co.uk/item-78.html</link>
     <description>
     <![CDATA[If you need to break up a delimited string within PLSQL into parts then you can use DBMS_UTILITY.comma_to_table. This function breaks up a comma delimited string.]]></description>
     <category>Oracle</category>
     <pubDate>Thu, 04 Nov 2010 14:55:00 +0000</pubDate>
     <guid isPermaLink="true">http://www.mattsbits.co.uk/item-78.html</guid>
    </item>
    <item>
     <title>Using Oracle PLSQL To Create, Delete And View Cookies</title>
     <link>http://www.mattsbits.co.uk/item-61.html</link>
     <description>
     <![CDATA[You can create, delete and view browser cookies within PLSQL using an Oracle Web Agent (OWA) package called "owa_cookie". This package can be used within APEX if required.]]></description>
     <category>Oracle</category>
     <pubDate>Thu, 09 Sep 2010 10:03:00 +0000</pubDate>
     <guid isPermaLink="true">http://www.mattsbits.co.uk/item-61.html</guid>
    </item>
    <item>
     <title>Handling Errors And Exceptions In Oracle PLSQL</title>
     <link>http://www.mattsbits.co.uk/item-60.html</link>
     <description>
     <![CDATA[In PL/SQL, a warning or error condition is called an exception. Exceptions can be predefined or they can be user defined. This article explains how you can define and use your own custom exceptions.]]></description>
     <category>Oracle</category>
     <pubDate>Thu, 09 Sep 2010 08:41:00 +0000</pubDate>
     <guid isPermaLink="true">http://www.mattsbits.co.uk/item-60.html</guid>
    </item>
    <item>
     <title>SQL Script To Display Tablespace Utilisation</title>
     <link>http://www.mattsbits.co.uk/item-56.html</link>
     <description>
     <![CDATA[This query will give you a basic report on the bytes used and bytes available in the Tablespaces within a particular schema. I have used it within Oracle APEX but it can be used elsewhere.]]></description>
     <category>Oracle</category>
     <pubDate>Thu, 26 Aug 2010 16:11:00 +0000</pubDate>
     <guid isPermaLink="true">http://www.mattsbits.co.uk/item-56.html</guid>
    </item>
    <item>
     <title>PLSQL Function To Split String By Token Or Delimiter</title>
     <link>http://www.mattsbits.co.uk/item-39.html</link>
     <description>
     <![CDATA[PLSQL doesn't include any functions to split strings by tokens or delimiting characters such as commas or colons. The function below allows you to split a string separated by a specified character.]]></description>
     <category>Oracle</category>
     <pubDate>Fri, 23 Apr 2010 12:02:00 +0000</pubDate>
     <guid isPermaLink="true">http://www.mattsbits.co.uk/item-39.html</guid>
    </item>
    <item>
     <title>Get Users IP Address In PLSQL</title>
     <link>http://www.mattsbits.co.uk/item-35.html</link>
     <description>
     <![CDATA[If you need to get a users IP address in PLSQL or Oracle Application Express you can use the owa_util.get_cgi_env function.]]></description>
     <category>Oracle</category>
     <pubDate>Thu, 25 Mar 2010 09:07:00 +0000</pubDate>
     <guid isPermaLink="true">http://www.mattsbits.co.uk/item-35.html</guid>
    </item>
    <item>
     <title>Oracle BI Publisher Chart Generator</title>
     <link>http://www.mattsbits.co.uk/item-29.html</link>
     <description>
     <![CDATA[Creating charts using the Oracle BI Publisher Word Template Builder is fairly straightforward. Modifying the chart or doing any customisation usually involves editing the raw XML definition.]]></description>
     <category>Oracle</category>
     <pubDate>Thu, 14 Jan 2010 20:17:00 +0000</pubDate>
     <guid isPermaLink="true">http://www.mattsbits.co.uk/item-29.html</guid>
    </item>
    <item>
     <title>Oracle SQL Developer SQL Worksheet And Ampersands</title>
     <link>http://www.mattsbits.co.uk/item-12.html</link>
     <description>
     <![CDATA[If you attempt to run SQL queries in a SQL worksheet and that query includes ampersands then SQL Developer will prompt you for bind variable values. Here is the solution.]]></description>
     <category>Oracle</category>
     <pubDate>Thu, 30 Apr 2009 21:22:00 +0000</pubDate>
     <guid isPermaLink="true">http://www.mattsbits.co.uk/item-12.html</guid>
    </item>
  </channel>
</rss>
