<?xml version="1.0" encoding="iso-8859-1" ?>
<rss version="2.0">
  <channel>
    <title>MattsBits - Oracle</title>
    <link>http://www.mattsbits.co.uk/</link>
    <description>PLSQL, BI Publisher and other Oracle technology related posts</description>
    <language>en-us</language>
    <generator>MattHawkins CMS v2.0</generator>
    <copyright>Copyright 2009-2010</copyright>
    <category>Weblog</category>
    <docs>http://backend.userland.com/rss</docs>
    <image>
      <url>http://www.mattsbits.co.uk/</url>
      <title>MattsBits - Oracle</title>
      <link>http://www.mattsbits.co.uk/</link>
    </image>
    <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.<br />
<br />
The function below allows you to split a string separated by a specified character. It returns the chunk that you request.<br />
<br />
[pre]<br />
myStr := SPLIT_STRING_BY_TOKEN('red:blue:green',':',2)<br />
[/pre]<br />
<br />
This function call above returns the 2nd chunk in the string which results in 'blue'.]]></description>
     <category>Oracle</category>
     <pubDate>Fri, 23 Apr 2010 13:02:00 +0000</pubDate>
     <guid>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 following syntax :<br />
<br />
[pre]l_ip := owa_util.get_cgi_env('REMOTE_ADDR');[/pre]]]></description>
     <category>Oracle</category>
     <pubDate>Thu, 25 Mar 2010 09:07:00 +0000</pubDate>
     <guid>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. Once you've got your XML input data you simply load it within Word and run the chart wizard.<br />
<br />
If the wizard creates the chart you want then you are lucky. Modifying the chart or doing any customisation usually involves editing the raw XML definition. However, there is almost no decent documentation available for tweaking the XML and is something of a black art.<br />
<br />
So I created the <a href="http://www.mattsbits.co.uk/webtools/bi_chart_generator/">Oracle BI Publisher Chart Generator</a>.]]></description>
     <category>Oracle</category>
     <pubDate>Thu, 14 Jan 2010 20:17:00 +0000</pubDate>
     <guid>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. It assumes anything starting with an ampersand must be a bind variable.<br />
<br />
For example the query below :<br />
<br />
[pre]<br />
SELECT * FROM TBL_COLOURS WHERE colour = 'Red&Blue';<br />
[/pre]<br />
<br />
would result in a pop-up window asking for a value for "&Blue".]]></description>
     <category>Oracle</category>
     <pubDate>Thu, 30 Apr 2009 22:22:00 +0000</pubDate>
     <guid>http://www.mattsbits.co.uk/item-12.html</guid>
    </item>
  </channel>
</rss>