<?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>Ramblings from the bit bucket</title>
	<atom:link href="http://blogs.planetingres.org/notnull/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.planetingres.org/notnull</link>
	<description>Just another blogs.planetingres.org weblog</description>
	<lastBuildDate>Tue, 23 Feb 2010 17:41:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Useful or useless? Follow on post &#8230;</title>
		<link>http://blogs.planetingres.org/notnull/2010/02/23/useful-or-useless-follow-on-post/</link>
		<comments>http://blogs.planetingres.org/notnull/2010/02/23/useful-or-useless-follow-on-post/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 08:48:36 +0000</pubDate>
		<dc:creator>notnull</dc:creator>
				<category><![CDATA[Example]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[ima]]></category>
		<category><![CDATA[ingres]]></category>

		<guid isPermaLink="false">http://blogs.planetingres.org/notnull/?p=131</guid>
		<description><![CDATA[Way back in May last year I experimented with some IMA tables that showed data types and operators defined in the DBMS.  Further poking around and a table for a list of the function instances is available,
drop ima_dbms_fis;
\p\g
register table ima_dbms_fis (
        server varchar(64) not null not default is
 [...]]]></description>
			<content:encoded><![CDATA[<p>Way back in May last year I experimented with some IMA tables that<a title="Useful or useless? You decide" href="http://blogs.planetingres.org/notnull/2009/05/01/useful-or-useless-you-decide/"> showed data types and operators</a> defined in the DBMS.  Further poking around and a table for a list of the function instances is available,</p>
<pre>drop ima_dbms_fis;
\p\g
register table ima_dbms_fis (
        server varchar(64) not null not default is
                'SERVER',
        id integer4 not null not default is
                'exp.adf.adg.fi_id',
        complement integer4 not null not default is
                'exp.adf.adg.fi_cmplmnt',
        type varchar(20) not null not default is
                'exp.adf.adg.fi_type',
        flags integer4 not null not default is
                'exp.adf.adg.fi_flags',
        opid integer4 not null not default is
                'exp.adf.adg.fi_opid',
        args integer4 not null not default is
                'exp.adf.adg.fi_numargs',
        dtresult integer4 not null not default is
                'exp.adf.adg.fi_dtresult',
        dtarg1 integer4 not null not default is
                'exp.adf.adg.fi_dtarg1',
        dtarg2 integer4 not null not default is
                'exp.adf.adg.fi_dtarg2',
        dtarg3 integer4 not null not default is
                'exp.adf.adg.fi_dtarg3',
        dtarg4 integer4 not null not default is
                'exp.adf.adg.fi_dtarg4'
)
as import from 'tables'
with dbms = IMA,
structure = sortkeyed,
key = (server);
\p\g
grant all on ima_dbms_fis to ingres;
\p\g
grant select on ima_dbms_fis to public;
\p\g</pre>
<p>Adding this table to ima_dbms_types and ima_dbms_operators adds the ability to retrieve the list of functions and their signatures.  The query makes use of an internal function <em>iitypename</em> which translates the numeric type code into a name.</p>
<pre>select
    a.name,
    case when a.type='COMPARISON' then
        trim(iitypename(b.dtresult)) + ' = ( ' +
        trim(iitypename(b.dtarg1)) + ' ' +
        a.name + ' ' +
        trim(iitypename(b.dtarg2)) + ' )'
        when a.type='OPERATOR' then
        trim(iitypename(b.dtresult)) + ' = ( ' +
        trim(iitypename(b.dtarg1)) + ' ' +
        a.name + ' ' +
        trim(iitypename(b.dtarg2)) + ' )'
    else
        trim(iitypename(b.dtresult)) + ' = ' +
        a.name + '( ' +
            case when b.dtarg1 != '' then trim(iitypename(b.dtarg1)) else '' end +
            case when b.dtarg2 != '' then ', ' + trim(iitypename(b.dtarg2)) else '' end +
            case when b.dtarg3 != '' then ', ' + trim(iitypename(b.dtarg3)) else '' end +
            case when b.dtarg4 != '' then ', ' + trim(iitypename(b.dtarg4)) else '' end
        + ' )'
    end as signature
from
    ima_dbms_operators a,
    ima_dbms_fis b
where
    a.opid = b.opid
group by a.name, 2
order by a.name</pre>
<p>Some sample output from this query:</p>
<pre>|name                          |signature                       |
|soundex                       |char = soundex( text )          |
|soundex                       |char = soundex( varchar )       |
|sqrt                          |float = sqrt( float )           |
|squeeze                       |nvarchar = squeeze( nchar )     |
|squeeze                       |nvarchar = squeeze( nvarchar )  |
|squeeze                       |text = squeeze( c )             |</pre>
<p>So in answer to my own question; yes, it is useful.  I&#8217;ll be trying this on an <a title="IngresGeospatial" href="http://community.ingres.com/wiki/IngresGeospatial">IngresGeospatial</a> build when I get my hands on one.<br />
<h3>Related posts</h3>
<ul class="related_post">
<li><a href="http://blogs.planetingres.org/notnull/2008/03/28/google-summer-of-code-gsoc-2008/" title="Google Summer of Code (GSoC) 2008">Google Summer of Code (GSoC) 2008</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2006/06/08/ima-guru-pronounced-im-a-guru-i-definitely-am-not/" title="IMA Guru (Pronounced, I&#8217;m A Guru) &#8211; I definitely am not">IMA Guru (Pronounced, I&#8217;m A Guru) &#8211; I definitely am not</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2010/02/04/button-clicks-do-nothing-in-ingres-database-workbench-eclipse-and-its-derivatives/" title="Button clicks do nothing in Ingres Database Workbench, Eclipse and its derivatives">Button clicks do nothing in Ingres Database Workbench, Eclipse and its derivatives</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2009/10/07/learning-to-share/" title="Learning to share">Learning to share</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2009/06/15/uk-iua-conference-2009/" title="UK IUA Conference 2009">UK IUA Conference 2009</a></li>
</ul>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblogs.planetingres.org%2Fnotnull%2F2010%2F02%2F23%2Fuseful-or-useless-follow-on-post%2F&amp;linkname=Useful%20or%20useless%3F%20Follow%20on%20post%20%26%238230%3B"><img src="http://blogs.planetingres.org/notnull/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://blogs.planetingres.org/notnull/2010/02/23/useful-or-useless-follow-on-post/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Button clicks do nothing in Ingres Database Workbench, Eclipse and its derivatives</title>
		<link>http://blogs.planetingres.org/notnull/2010/02/04/button-clicks-do-nothing-in-ingres-database-workbench-eclipse-and-its-derivatives/</link>
		<comments>http://blogs.planetingres.org/notnull/2010/02/04/button-clicks-do-nothing-in-ingres-database-workbench-eclipse-and-its-derivatives/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 11:01:41 +0000</pubDate>
		<dc:creator>notnull</dc:creator>
				<category><![CDATA[Example]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[ingres]]></category>
		<category><![CDATA[Database Workbench]]></category>
		<category><![CDATA[Eclipse]]></category>

		<guid isPermaLink="false">http://blogs.planetingres.org/notnull/?p=126</guid>
		<description><![CDATA[On some distributions of Linux when running Eclipse and applications derived from Eclipse the buttons on dialogs whilst accepting clicks do not seem to do anything.
After some minutes of frustration and even more minutes searching for an answer on Google  I found this https://bugs.eclipse.org/bugs/show_bug.cgi?id=291257 Any way the temporary solution is to set the environment [...]]]></description>
			<content:encoded><![CDATA[<p>On some distributions of Linux when running Eclipse and applications derived from Eclipse the buttons on dialogs whilst accepting clicks do not seem to do anything.</p>
<p>After some minutes of frustration and even more minutes searching for an answer on Google  I found this <a title="Eclipse bug id 291257" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=291257">https://bugs.eclipse.org/bugs/show_bug.cgi?id=291257</a> Any way the temporary solution is to set the environment variable GDK_NATIVE_WINDOWS to 1 before invoking the Eclipse launcher.  For example, use a script that implements the following:</p>
<p style="padding-left: 30px"><code>#!/bin/sh<br />
export GDK_NATIVE_WINDOWS=1<br />
/usr/local/Eclipse/eclipse/eclipse</code></p>
<p>Another workaround would be to try using the keyboard&#8217;s space bar to make a button selection, but this gets a bit tedious.</p>
<p>Alternatively wait patiently for the advent of 3.6.<br />
<h3>Related posts</h3>
<ul class="related_post">
<li><a href="http://blogs.planetingres.org/notnull/2008/01/21/rapid/" title="Rapid">Rapid</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2010/02/23/useful-or-useless-follow-on-post/" title="Useful or useless? Follow on post &#8230;">Useful or useless? Follow on post &#8230;</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2009/10/12/114/" title="Hello, Eclipse calling &#8230;">Hello, Eclipse calling &#8230;</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2009/10/07/learning-to-share/" title="Learning to share">Learning to share</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2009/06/15/uk-iua-conference-2009/" title="UK IUA Conference 2009">UK IUA Conference 2009</a></li>
</ul>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblogs.planetingres.org%2Fnotnull%2F2010%2F02%2F04%2Fbutton-clicks-do-nothing-in-ingres-database-workbench-eclipse-and-its-derivatives%2F&amp;linkname=Button%20clicks%20do%20nothing%20in%20Ingres%20Database%20Workbench%2C%20Eclipse%20and%20its%20derivatives"><img src="http://blogs.planetingres.org/notnull/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://blogs.planetingres.org/notnull/2010/02/04/button-clicks-do-nothing-in-ingres-database-workbench-eclipse-and-its-derivatives/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Every journey begins with a single step</title>
		<link>http://blogs.planetingres.org/notnull/2009/12/01/every-journey-begins-with-a-single-step/</link>
		<comments>http://blogs.planetingres.org/notnull/2009/12/01/every-journey-begins-with-a-single-step/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 09:51:20 +0000</pubDate>
		<dc:creator>notnull</dc:creator>
				<category><![CDATA[Example]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[Cloud in a Box]]></category>
		<category><![CDATA[Exadel]]></category>
		<category><![CDATA[Ingres 10]]></category>
		<category><![CDATA[JBoss]]></category>

		<guid isPermaLink="false">http://blogs.planetingres.org/notnull/?p=122</guid>
		<description><![CDATA[Have you ever had to create a development stack on a machine from scratch to develop on or to check out a new technology?
You have?  Then you must have suffered some of the same frustrations and annoyances of ensuring that the prerequisites and dependencies of each component are satisfied; ending up with downloading some huge [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever had to create a development stack on a machine from scratch to develop on or to check out a new technology?</p>
<p>You have?  Then you must have suffered some of the same frustrations and annoyances of ensuring that the prerequisites and dependencies of each component are satisfied; ending up with downloading some huge quantity of software.  The plethora of  download, installation and configuration steps required just to get to the starting point can be enough to dissuade all but the most tenacious.<br />
The helpful people at <a href="http://exadel.com">Exadel</a> have taken those many steps to get to the starting point and created an Amazon Machine Image (AMI) called <a title="Cloud in a box" href="http://exadel.com/web/portal/riaCloud">Cloud in a box</a> that includes all the components to create Rich Internet Applications (RIA).  With an Amazon Web Services (AWS) account you can launch an instance of the image and take your first step to being productive.  Read the blog post about it <a title="RIA on the Cloud with RichFaces and Ingres" href="http://blog.exadel.com/2009/11/30/427/">RIA on the Cloud with RichFaces and Ingres</a> and register for a free account on the <a href="http://exadel.com">Exadel Web site</a> for more detailed instructions.<br />
<h3>Some random stuff</h3>
<ul class="related_post">
<li><a href="http://blogs.planetingres.org/notnull/2006/08/06/continuing-in-the-ima-vein/" title="Continuing in the IMA vein &#8230;">Continuing in the IMA vein &#8230;</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2007/05/14/engineering-joins-the-blogosphere/" title="Engineering joins the Blogosphere">Engineering joins the Blogosphere</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2008/04/28/ingres-engineering-summit-2008/" title="Ingres Engineering Summit 2008">Ingres Engineering Summit 2008</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2007/06/25/long-range-forecast/" title="Long range forecast">Long range forecast</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2008/03/22/cached-dynamic-query/" title="Cached Dynamic Query">Cached Dynamic Query</a></li>
</ul>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblogs.planetingres.org%2Fnotnull%2F2009%2F12%2F01%2Fevery-journey-begins-with-a-single-step%2F&amp;linkname=Every%20journey%20begins%20with%20a%20single%20step"><img src="http://blogs.planetingres.org/notnull/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://blogs.planetingres.org/notnull/2009/12/01/every-journey-begins-with-a-single-step/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jira 4.0</title>
		<link>http://blogs.planetingres.org/notnull/2009/10/13/jira-4-0/</link>
		<comments>http://blogs.planetingres.org/notnull/2009/10/13/jira-4-0/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 10:01:25 +0000</pubDate>
		<dc:creator>notnull</dc:creator>
				<category><![CDATA[Example]]></category>
		<category><![CDATA[database]]></category>

		<guid isPermaLink="false">http://blogs.planetingres.org/notnull/?p=119</guid>
		<description><![CDATA[Those nice people at Atlassian have another starter introductory offer http://www.atlassian.com/starter/.  Not being a person to look a gift horse in the mouth, and already using and evaluation of Jira 3.12 with Ingres I decided to put my hand in my pocket.
I&#8217;ve updated the scripts and the notes to get Jira working with Ingres and [...]]]></description>
			<content:encoded><![CDATA[<p>Those nice people at Atlassian have another starter introductory offer <a href="http://www.atlassian.com/starter/">http://www.atlassian.com/starter/</a>.  Not being a person to look a gift horse in the mouth, and already using and evaluation of <a href="http://blogs.planetingres.org/notnull/2008/07/07/eight-is-a-lucky-number/">Jira 3.12</a> with Ingres I decided to put my hand in my pocket.</p>
<p>I&#8217;ve updated the scripts and the notes to get Jira working with Ingres and uploaded them to the the Jira issue <a href="http://jira.atlassian.com/browse/JRA-6150">[#JRA-6150]</a>.  As you&#8217;ll notice there were no plans to support Ingres a year ago. With the current happenings in the market I wonder if that has changed.</p>
<p>During my last foray into this arena I got to meet Sarat Pediredla who help me get Ingres working with <a href="http://hedgehoglab.com/products/fixx">Fixx</a>.  With the release of Ingres 9.3 I&#8217;ll have to see if Sarat would consider including Ingres out-of-the-box.<br />
<h3>Some random stuff</h3>
<ul class="related_post">
<li><a href="http://blogs.planetingres.org/notnull/2008/03/28/google-summer-of-code-gsoc-2008/" title="Google Summer of Code (GSoC) 2008">Google Summer of Code (GSoC) 2008</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2009/06/15/uk-iua-conference-2009/" title="UK IUA Conference 2009">UK IUA Conference 2009</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2009/10/12/114/" title="Hello, Eclipse calling &#8230;">Hello, Eclipse calling &#8230;</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2007/07/11/sony-ps3-ii-910-ppclnx00/" title="Sony PS3 II 9.1.0 (ppc.lnx/00)">Sony PS3 II 9.1.0 (ppc.lnx/00)</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2009/04/24/in-the-market-for-jdbc-properties/" title="In the market for JDBC properties">In the market for JDBC properties</a></li>
</ul>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblogs.planetingres.org%2Fnotnull%2F2009%2F10%2F13%2Fjira-4-0%2F&amp;linkname=Jira%204.0"><img src="http://blogs.planetingres.org/notnull/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://blogs.planetingres.org/notnull/2009/10/13/jira-4-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello, Eclipse calling &#8230;</title>
		<link>http://blogs.planetingres.org/notnull/2009/10/12/114/</link>
		<comments>http://blogs.planetingres.org/notnull/2009/10/12/114/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 07:07:43 +0000</pubDate>
		<dc:creator>notnull</dc:creator>
				<category><![CDATA[Example]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Eclipse Communications Framework]]></category>
		<category><![CDATA[Skype]]></category>

		<guid isPermaLink="false">http://blogs.planetingres.org/notnull/?p=114</guid>
		<description><![CDATA[A follow on post on setting up the Eclipse Communications Framework (ECF).
If like me you have to work and communicate whilst connected to private systems, but from time-to-time need to collaborate with developers who are not privy to those systems then this article http://ecf1.osuosl.org/updateReleasedSiteInstructions.html may help.  It describes how to install a plug-in into the [...]]]></description>
			<content:encoded><![CDATA[<p>A follow on post on setting up the <a href="http://www.eclipse.org/projects/project_summary.php?projectid=rt.ecf">Eclipse Communications Framework (ECF)</a>.</p>
<p>If like me you have to work and communicate whilst connected to private systems, but from time-to-time need to collaborate with developers who are not privy to those systems then this <a href="http://ecf1.osuosl.org/updateReleasedSiteInstructions.html">article</a> <a href="http://ecf1.osuosl.org/updateReleasedSiteInstructions.html">http://ecf1.osuosl.org/updateReleasedSiteInstructions.html</a> may help.  It describes how to install a plug-in into the <a href="http://eclipse.org/">Eclipse IDE</a> that enables it to use the <a href="http://skype.com">Skype</a> API as an instant messaging provider.</p>
<p>Using Galileo SR1 on Windows XP I found that selecting Skype directly from the Connection to Provider button did not establish after installation and choosing Skype from the dialog offered more success.  However, once Eclipse had been restarted all was again right with the world.<br />
<h3>Related posts</h3>
<ul class="related_post">
<li><a href="http://blogs.planetingres.org/notnull/2009/10/07/learning-to-share/" title="Learning to share">Learning to share</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2010/02/04/button-clicks-do-nothing-in-ingres-database-workbench-eclipse-and-its-derivatives/" title="Button clicks do nothing in Ingres Database Workbench, Eclipse and its derivatives">Button clicks do nothing in Ingres Database Workbench, Eclipse and its derivatives</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2008/08/06/donnez-moi-un-cafe-ingres/" title="Donnez-moi un café Ingres">Donnez-moi un café Ingres</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2008/01/21/rapid/" title="Rapid">Rapid</a></li>
</ul>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblogs.planetingres.org%2Fnotnull%2F2009%2F10%2F12%2F114%2F&amp;linkname=Hello%2C%20Eclipse%20calling%20%26%238230%3B"><img src="http://blogs.planetingres.org/notnull/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://blogs.planetingres.org/notnull/2009/10/12/114/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learning to share</title>
		<link>http://blogs.planetingres.org/notnull/2009/10/07/learning-to-share/</link>
		<comments>http://blogs.planetingres.org/notnull/2009/10/07/learning-to-share/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 10:14:56 +0000</pubDate>
		<dc:creator>notnull</dc:creator>
				<category><![CDATA[Example]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[ECF]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Eclipse Communications Framework]]></category>
		<category><![CDATA[shared editing]]></category>

		<guid isPermaLink="false">http://blogs.planetingres.org/notnull/?p=108</guid>
		<description><![CDATA[Have you ever needed a discussion with a colleague or a mentor whilst you were coding?  Tried to in an instant messenger conversation and found switching between your editor and IM client frustrating?
There is an project within Eclipse called the Eclipse Communication Framework (ECF) that transforms the Eclipse IDE into a instant collaboration tool that [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever needed a discussion with a colleague or a mentor whilst you were coding?  Tried to in an instant messenger conversation and found switching between your editor and IM client frustrating?</p>
<p>There is an project within Eclipse called the <a title="Eclipse Communications Framework" href="http://www.eclipse.org/ecf/">Eclipse Communication Framework (ECF)</a> that transforms the Eclipse IDE into a instant collaboration tool that includes shared editing.  The shared editing feature in ECF allows multiple contributors to make simultaneous edits and differentiates it from other tools where each contributor needs to hold the</p>
<p>What differentiates the shared editing in ECF with other tools is that multiple contributors can make real time edits simultaneously.</p>
<p>I&#8217;ve been working with colleagues who are distributed across the globe looking at some java code so we installed ECF to try shared editing and ended up with more than we expected.</p>
<p>I&#8217;m using Eclipse Galileo SR1 and followed the <a title="ECF installation" href="http://www.eclipse.org/ecf/downloads.php">instructions for ECF installation</a> on <a href="http://www.eclipse.org/ecf/downloads.php">http://www.eclipse.org/ecf/downloads.php</a>.</p>
<p>To get file sharing an ECF generic server is required for workspace collaboration, installation instructions are on <a href="http://wiki.eclipse.org/ECF_Servers">http://wiki.eclipse.org/ECF_Servers</a> and I also followed the section &#8220;Starting an ECF Generic Server with java only&#8221;.  I updated versions of the jar files using the ones from my updated Eclipse plug-ins:</p>
<ul>
<li>org.eclipse.core.jobs_3.4.100.v20090429-1800.jar</li>
<li>org.eclipse.core.runtime.compatibility_3.2.0.v20090413.jar</li>
<li>org.eclipse.equinox.app_1.2.0.v20090520-1800.jar</li>
<li>org.eclipse.equinox.common_3.5.1.R35x_v20090807-1100.jar</li>
<li>org.eclipse.equinox.registry_3.4.100.v20090520-1800.jar</li>
<li>org.eclipse.osgi.services_3.2.0.v20090520-1800.jar</li>
<li>org.eclipse.osgi_3.5.1.R35x_v20090827.jar</li>
<li>org.eclipse.ecf.discovery_3.0.0.v20090616-0832.jar</li>
<li>org.eclipse.ecf.identity_3.0.0.v20090831-1906.jar</li>
<li>org.eclipse.ecf.server.generic_2.0.0.v20090616-0832.jar</li>
<li>org.eclipse.ecf.provider_2.0.0.v20090616-0832.jar</li>
<li>org.eclipse.ecf.sharedobject_2.0.0.v20090616-0832.jar</li>
<li>org.eclipse.ecf_3.0.0.v20090831-1906.jar</li>
</ul>
<p>I also created a simple server.xml file for changing the listening port number to facilitate navigation through firewalls.<br />
Assuming JRE, paths and permissions are already configured I start the server using this script created based on the instructions.</p>
<pre>#!/bin/bash
HOME=/home/eclipse
LOG=.
java -Dfile.encoding=ISO-8859-1 -classpath ${HOME}/plugins/org.eclipse.equinox.common_3.5.1.R35x_v20090807-1100.jar:\
${HOME}/plugins/org.eclipse.core.runtime.compatibility_3.2.0.v20090413.jar:\
${HOME}/plugins/org.eclipse.equinox.registry_3.4.100.v20090520-1800.jar:\
${HOME}/plugins/org.eclipse.osgi.services_3.2.0.v20090520-1800.jar:\
${HOME}/plugins/org.eclipse.osgi_3.5.1.R35x_v20090827.jar:\
${HOME}/plugins/org.eclipse.core.jobs_3.4.100.v20090429-1800.jar:\
${HOME}/plugins/org.eclipse.equinox.app_1.2.0.v20090520-1800.jar:\
${HOME}/plugins/org.eclipse.ecf.discovery_3.0.0.v20090616-0832.jar:\
${HOME}/plugins/org.eclipse.ecf.identity_3.0.0.v20090831-1906.jar:\
${HOME}/plugins/org.eclipse.ecf.server.generic_2.0.0.v20090616-0832.jar:\
${HOME}/plugins/org.eclipse.ecf.provider_2.0.0.v20090616-0832.jar:\
${HOME}/plugins/org.eclipse.ecf.sharedobject_2.0.0.v20090616-0832.jar:\
${HOME}/plugins/org.eclipse.ecf_3.0.0.v20090831-1906.jar\
 org.eclipse.ecf.server.generic.app.ServerApplication -c ${HOME}/server.xml &gt; ${LOG}/ecf-server.log 2&gt;&amp;1 &amp;</pre>
<p>Once the server is running connect to it from Eclipse using the collaboration icon.  A collaboration view is opened with the members of the session ready in a group chat .</p>
<p>To make shared edits to a file; open the file in the editor, right click in the editor pane and select the context menu option Share Editor With and select the name of a collaborating editor, both of you can start editing.<br />
<h3>Related posts</h3>
<ul class="related_post">
<li><a href="http://blogs.planetingres.org/notnull/2009/10/12/114/" title="Hello, Eclipse calling &#8230;">Hello, Eclipse calling &#8230;</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2008/08/06/donnez-moi-un-cafe-ingres/" title="Donnez-moi un café Ingres">Donnez-moi un café Ingres</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2010/02/23/useful-or-useless-follow-on-post/" title="Useful or useless? Follow on post &#8230;">Useful or useless? Follow on post &#8230;</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2010/02/04/button-clicks-do-nothing-in-ingres-database-workbench-eclipse-and-its-derivatives/" title="Button clicks do nothing in Ingres Database Workbench, Eclipse and its derivatives">Button clicks do nothing in Ingres Database Workbench, Eclipse and its derivatives</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2008/03/28/google-summer-of-code-gsoc-2008/" title="Google Summer of Code (GSoC) 2008">Google Summer of Code (GSoC) 2008</a></li>
</ul>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblogs.planetingres.org%2Fnotnull%2F2009%2F10%2F07%2Flearning-to-share%2F&amp;linkname=Learning%20to%20share"><img src="http://blogs.planetingres.org/notnull/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://blogs.planetingres.org/notnull/2009/10/07/learning-to-share/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More time flies when you&#8217;re distracted!</title>
		<link>http://blogs.planetingres.org/notnull/2009/09/29/more-time-flies-when-youre-distracted/</link>
		<comments>http://blogs.planetingres.org/notnull/2009/09/29/more-time-flies-when-youre-distracted/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 10:07:39 +0000</pubDate>
		<dc:creator>notnull</dc:creator>
				<category><![CDATA[database]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[ingres]]></category>

		<guid isPermaLink="false">http://blogs.planetingres.org/notnull/?p=103</guid>
		<description><![CDATA[I put down my pen (keyboard) and looked away from the blog and when I looked up three months have passed and I have been remiss at writing articles.  Trying to decide on (what I think are) interesting articles is very taxing on my diminishing grey cells and I have to allocate more of them [...]]]></description>
			<content:encoded><![CDATA[<p>I put down my pen (keyboard) and looked away from the blog and when I looked up three months have passed and I have been remiss at writing articles.  Trying to decide on (what I think are) interesting articles is very taxing on my diminishing grey cells and I have to allocate more of them to be creative.</p>
<p>A couple of weeks back we had an inaugural meeting with the contributors from <a title="UCOSP" href="http://ucosp.wordpress.com">UCSOP</a> supporting the <a title="UCOSP Ingres" href="http://ucosp.wordpress.com/project-ingres/">Ingres project</a>.  One of the primary projects is to use of <a title="Ingres Geospatial" href="http://community.ingres.com/wiki/IngresGeospatial">Ingres geospatial support</a> as the backing database for the <a title="OpenLayers Home" href="http://openlayers.org/">OpenLayers</a> plug-in in <a title="Drupal Home" href="http://drupal.org/">Drupal</a>.  A few of the team travelled to Toronto for a face-to-face meeting and seem to have enjoyed their first experiences with Ingres.</p>
<p>Yesterday I sat-in on the preliminary presentations for the Ingres <a href="http://community.ingres.com/wiki/OpenROAD_Agenda_Code_Sprint_User_Group_Meeting_UK_Sep2009">OpenROAD Code Sprint</a> taking place in the European headquarters.  My interest was the processes employed to make the code and tools available to the participants and then to introduce the working practices of making a code contribution and I took away a few ideas.</p>
<p>Most of the past few months has been spent on working on issues ready for the impending Ingres 9.3 release. Some of which involved reading byte-code and assembler to document a compiler bug.</p>
<p>Much has been going on since my last post but most notable from the Emerging Technologies Team were:</p>
<ul>
<li><a href="http://esd.ingres.com/product/docs/Ingres_Icebreaker/docs/Business_Intelligence_315/">Icebreaker BI Appliance with Jasperserver 3.5</a></li>
<li><a href="http://esd.ingres.com/product/BI_Bundles/Business_Intelligence/">Ingres and Jasperserver bundle</a></li>
<li><a href="http://esd.ingres.com/product/Community_Projects/Ingres_Alfresco_Bundle/">Ingres and Alfresco bundle</a></li>
<li><a href="http://esd.ingres.com/product/JBoss_Stack/JBoss">Ingres and JBoss development stack</a></li>
</ul>
<p>More catching-up later, but hopefully not three months <img src='http://blogs.planetingres.org/notnull/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<h3>Some random stuff</h3>
<ul class="related_post">
<li><a href="http://blogs.planetingres.org/notnull/2008/06/25/uk-iua-spring-conference-june-2008/" title="UK IUA Spring Conference June 2008">UK IUA Spring Conference June 2008</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2009/10/12/114/" title="Hello, Eclipse calling &#8230;">Hello, Eclipse calling &#8230;</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2007/05/14/engineering-joins-the-blogosphere/" title="Engineering joins the Blogosphere">Engineering joins the Blogosphere</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2009/05/01/useful-or-useless-you-decide/" title="Useful or useless? You decide.">Useful or useless? You decide.</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2009/10/07/learning-to-share/" title="Learning to share">Learning to share</a></li>
</ul>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblogs.planetingres.org%2Fnotnull%2F2009%2F09%2F29%2Fmore-time-flies-when-youre-distracted%2F&amp;linkname=More%20time%20flies%20when%20you%26%238217%3Bre%20distracted%21"><img src="http://blogs.planetingres.org/notnull/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://blogs.planetingres.org/notnull/2009/09/29/more-time-flies-when-youre-distracted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UK IUA Conference 2009</title>
		<link>http://blogs.planetingres.org/notnull/2009/06/15/uk-iua-conference-2009/</link>
		<comments>http://blogs.planetingres.org/notnull/2009/06/15/uk-iua-conference-2009/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 08:36:13 +0000</pubDate>
		<dc:creator>notnull</dc:creator>
				<category><![CDATA[IUA]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[general]]></category>
		<category><![CDATA[Alfresco]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[ingres]]></category>

		<guid isPermaLink="false">http://blogs.planetingres.org/notnull/?p=96</guid>
		<description><![CDATA[Another successful and worthwhile conference hosted by the UK Ingres User Association wrapped up Tuesday evening following a day cram packed with keynotes speeches and presentations.  Most notably, this year&#8217;s keynote speakers were Roger Burqhart, Phillip Andrew from RedHat and Dr. Ian Howells from Alfresco each with a similar message; Open source is a key [...]]]></description>
			<content:encoded><![CDATA[<p>Another successful and worthwhile conference hosted by the UK Ingres User Association wrapped up Tuesday evening following a day cram packed with keynotes speeches and presentations.  Most notably, this year&#8217;s keynote speakers were <a href="http://www.ingres.com/about/management/burkhardt.php">Roger Burqhart</a>, Phillip Andrew from <a href="http://www.redhat.com/">RedHat</a> and <a href="http://www.alfresco.com/about/people/management/#ih">Dr. Ian Howells</a> from <a href="http://www.alfresco.com">Alfresco </a>each with a similar message; Open source is a key influence in the New Economics of IT.  The most poignant part of the message was that in the current economic climate a subscription based payment model releases funds in a restrictive IT budget earmarked for software licenses for delivering new projects.  The subscription payment moves purchasing software from a capital expenditure to an operational expenditure.</p>
<p><a href="http://www.ingres.com/about/management/mcgrattan.php">Emma McGrattan</a> reported on the preceding code sprint some details of which are here <a title="Code sprint" href="http://blogs.planetingres.org/notnull/2009/06/10/ingres-code-sprint-09/">http://blogs.planetingres.org/notnull/2009/06/10/ingres-code-sprint-09/</a> and <a href="http://www.ingres.com/about/management/maimone.php">Bill Maimone</a> gave a glimpse of some of the projects that are currently in development both internally and in conjunction with the community.  His live demonstration was hampered by Windows but he showed a new table structure type which running on a laptop out performed MS SQL Server running on a large server environment.  Other developments include MVCC and long object names, more available at <a href="http://community.ingres.com/forum/blogs/stephenb/4-whats-happening-dbms-group.html">http://community.ingres.com/forum/blogs/stephenb/4-whats-happening-dbms-group.html</a>.</p>
<p>In a amended plenary agenda, Rick van der Lans was presented with an award for &#8216;Contribution to the Ingres Community&#8217; and was available to autograph copies of the newest addition to the Ingres bookshelf for over 20 years <a href="http://www.lulu.com/content/paperback-book/the-sql-guide-to-ingres/6608333">http://www.lulu.com/content/paperback-book/the-sql-guide-to-ingres/6608333</a>.</p>
<p>The afternoon breakout agenda contained more presentations than one person could attend.  I chose !EasyIngres, Multiple Simultaneous Assignment, Ingres 9.2 features and Ingres 9.3 and roadmap.</p>
<p>!EasyIngres a simple pre-configured bundle of the components required to start developing with PHP on Windows.  A community development mentored by Bruno Bompar; the project is starting to look at a similar Linux bundle.</p>
<p>Multiple Simultaneous Assignment a presentation on the research being carried out by Adrian Hudnott at Warwick University.  I attended this presentation despite being warned by colleagues that this presentation would make my brain hurt and I can confirm that it did indeed make my brain hurt.</p>
<p>Doug Inkster presented the new features available in Ingres 9.2 and some of the new features in 9.3.  Features such as cached dynamic queries and table auto structure.  Cached dynamic queries takes a prepared query and hashes the query text and uses it to identify a cached query plan removing the need to optimize the query again. Of particular benefit for queries which have long compilation times and short execution times.</p>
<p>Table auto structure implements a different default table structure and enforcement of primary keys.  The default table structure is heap and unique constraints are enforced with a secondary index.  With table auto structure enabled during a CREATE TABLE statement the primary key or unique constraint is used for a B-tree base table structure removing the need for the secondary index.  Previously this would have been achieved using the MODIFY and ALTER TABLE statements after the table had been created.</p>
<p>For the 9.3 and beyond presentation by Christine Normile, I attempted to keep notes on the community wiki <a href="http://community.ingres.com/wiki/UK_IUA_2009#9.4_Features">http://community.ingres.com/wiki/UK_IUA_2009#9.4_Features</a> and live on IRC #ingres logs available <a href="http://irc.planetingres.org/%23ingres.2009-06-09.log.html">http://irc.planetingres.org/%23ingres.2009-06-09.log.html</a>.</p>
<p>The conference closed with the announcement that next year&#8217;s conference will start on June 08 2010 and maybe a 2 day event.</p>
<p>I hope to see you all there.<br />
<h3>Related posts</h3>
<ul class="related_post">
<li><a href="http://blogs.planetingres.org/notnull/2009/03/10/heraldic-enterprise-content-management/" title="Heraldic Enterprise Content Management">Heraldic Enterprise Content Management</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2008/04/28/ingres-engineering-summit-2008/" title="Ingres Engineering Summit 2008">Ingres Engineering Summit 2008</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2010/02/23/useful-or-useless-follow-on-post/" title="Useful or useless? Follow on post &#8230;">Useful or useless? Follow on post &#8230;</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2010/02/04/button-clicks-do-nothing-in-ingres-database-workbench-eclipse-and-its-derivatives/" title="Button clicks do nothing in Ingres Database Workbench, Eclipse and its derivatives">Button clicks do nothing in Ingres Database Workbench, Eclipse and its derivatives</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2009/06/10/ingres-code-sprint-09/" title="Ingres Code Sprint 09">Ingres Code Sprint 09</a></li>
</ul>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblogs.planetingres.org%2Fnotnull%2F2009%2F06%2F15%2Fuk-iua-conference-2009%2F&amp;linkname=UK%20IUA%20Conference%202009"><img src="http://blogs.planetingres.org/notnull/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://blogs.planetingres.org/notnull/2009/06/15/uk-iua-conference-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ingres Code Sprint 09</title>
		<link>http://blogs.planetingres.org/notnull/2009/06/10/ingres-code-sprint-09/</link>
		<comments>http://blogs.planetingres.org/notnull/2009/06/10/ingres-code-sprint-09/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 18:57:47 +0000</pubDate>
		<dc:creator>notnull</dc:creator>
				<category><![CDATA[IUA]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[Code sprint]]></category>
		<category><![CDATA[ingres]]></category>
		<category><![CDATA[UK IUA]]></category>

		<guid isPermaLink="false">http://blogs.planetingres.org/notnull/?p=93</guid>
		<description><![CDATA[Following the popularity and attendance at last year&#8217;s code sprint a repeat of the event was held on the two days prior to the UK IUA.  The objective of the event was to introduce, and in some cases re-introduce, the sprinters to the Ingres source code and build environment; either a pre-configured VMWare virtual machine [...]]]></description>
			<content:encoded><![CDATA[<p>Following the popularity and attendance at last year&#8217;s code sprint a repeat of the event was held on the two days prior to the UK IUA.  The objective of the event was to introduce, and in some cases re-introduce, the sprinters to the Ingres source code and build environment; either a pre-configured VMWare virtual machine provided on a flash drive or the same image running as a machine in Amazon EC2 if required.</p>
<p>Projects compiled from the community and from other sources were considered and ranked according to the expertise in the room.</p>
<p>In no particular order they are:</p>
<ul>
<li>Improved SOUNDEX() function Daitch Mokotoff</li>
<li>Default to enable command history in terminal monitor on Linux and UNIX</li>
<li>Drupal with Ingres running in Amazon EC2</li>
<li>Pull ABF parser into the terminal monitor</li>
<li>CASE statements in ABF</li>
<li>IF statements within the terminal monitor</li>
<li>Rename Column</li>
<li>Bit column</li>
<li>optimizedb from within SQL</li>
<li>createdb from within SQL (Paul and Alex)</li>
<li>Online sysmod</li>
<li>DBfunctions as well as db procedures.   Difference between procedures only return a status</li>
<li>Storing a QEP so that you can reference it later</li>
<li>Renamedb</li>
<li>ckpdb &#8211; include the ability to use bzip2/gzip for compressed checkpoints</li>
<li>Incremental checkpoint</li>
<li>copydb with no logging</li>
<li>Utility to map process ids to gcc port numbers</li>
<li>List databases that you don’t want to use no logging</li>
<li>SQL Terminal monitor \s[hell] syntax to be extended to: \s[hell] [/full/path/to/file|{shell command;...}]</li>
</ul>
<p>Projects were assigned and investigated and were quickly excluded if proved more challenging and time consuming than the available two days.  Look out for the design documents for some of the implementation coming soon, take a look at the tickets from Jun 7 and 8 at http://bugs.ingres.com/timeline.</p>
<p>I worked with Roy Simon from Boarding Data A/S, taking a copy Drupal 6.1 which included updates for using Ingres built from the iuasprint09 SVN branch as its repository.  We also built the Ingres PHP driver with the latest patch.</p>
<p>All of the pre-requisites were installed and configurations updated so that when the machine is started, Ingres is started as a service and Drupal&#8217;s installation wizard is available by directing a Web browser to the Drupal Web page.  Once we had it running correctly, I used the <a href="http://aws.amazon.com/eclipse/">Amazon Web Services (AWS) plug-in in Eclipse</a> and created an Amazon Machine Image (AMI).</p>
<p>Although more an exercise in packaging than coding it was still satisfying to launch a machine in the Amazon Cloud and just start using it.</p>
<p>These early sprints are a way to have a guided tour of the Ingres source code with people who work with it every day. I look forward to seeing you at the next one, which may be before the next IUA 08/Jun/2010.<br />
<h3>Related posts</h3>
<ul class="related_post">
<li><a href="http://blogs.planetingres.org/notnull/2010/02/23/useful-or-useless-follow-on-post/" title="Useful or useless? Follow on post &#8230;">Useful or useless? Follow on post &#8230;</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2010/02/04/button-clicks-do-nothing-in-ingres-database-workbench-eclipse-and-its-derivatives/" title="Button clicks do nothing in Ingres Database Workbench, Eclipse and its derivatives">Button clicks do nothing in Ingres Database Workbench, Eclipse and its derivatives</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2009/06/15/uk-iua-conference-2009/" title="UK IUA Conference 2009">UK IUA Conference 2009</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2009/04/27/jasperserver-35-work-in-progress/" title="Jasperserver 3.5 work in progress">Jasperserver 3.5 work in progress</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2009/04/24/in-the-market-for-jdbc-properties/" title="In the market for JDBC properties">In the market for JDBC properties</a></li>
</ul>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblogs.planetingres.org%2Fnotnull%2F2009%2F06%2F10%2Fingres-code-sprint-09%2F&amp;linkname=Ingres%20Code%20Sprint%2009"><img src="http://blogs.planetingres.org/notnull/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://blogs.planetingres.org/notnull/2009/06/10/ingres-code-sprint-09/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Vote now</title>
		<link>http://blogs.planetingres.org/notnull/2009/05/23/85/</link>
		<comments>http://blogs.planetingres.org/notnull/2009/05/23/85/#comments</comments>
		<pubDate>Sat, 23 May 2009 07:35:21 +0000</pubDate>
		<dc:creator>notnull</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blogs.planetingres.org/notnull/?p=85</guid>
		<description><![CDATA[2009 Community Choice Awards
Nominate your favourite open source projects. Click the link and get voting &#8230;.

Some random stuff

Jira 4.0
Heraldic Enterprise Content Management
UK IUA Conference 2009
Trade show jeopardy (just for fun)
Enhanced Row producing procedures

]]></description>
			<content:encoded><![CDATA[<h2>2009 Community Choice Awards</h2>
<p>Nominate your favourite open source projects. Click the link and get voting &#8230;.</p>
<p><a href="http://sourceforge.net/community/cca09/nominate/?project_name=Ingres Database Management System (DBMS)&amp;project_url=http://ingres.sourceforge.net/"><img src="http://sourceforge.net/images/cca/cca_nominate.png" border="0" alt="" /></a><br />
<h3>Some random stuff</h3>
<ul class="related_post">
<li><a href="http://blogs.planetingres.org/notnull/2009/04/24/in-the-market-for-jdbc-properties/" title="In the market for JDBC properties">In the market for JDBC properties</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2007/08/22/business-intelligence-appliance/" title="Business Intelligence Appliance">Business Intelligence Appliance</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2007/08/02/date-time-paradox/" title="Date time paradox">Date time paradox</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2009/04/27/jasperserver-35-work-in-progress/" title="Jasperserver 3.5 work in progress">Jasperserver 3.5 work in progress</a></li>
<li><a href="http://blogs.planetingres.org/notnull/2007/11/09/ingres-sourcerers-sic-apprentice/" title="Ingres Sourcerer&#8217;s (sic) Apprentice">Ingres Sourcerer&#8217;s (sic) Apprentice</a></li>
</ul>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblogs.planetingres.org%2Fnotnull%2F2009%2F05%2F23%2F85%2F&amp;linkname=Vote%20now"><img src="http://blogs.planetingres.org/notnull/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://blogs.planetingres.org/notnull/2009/05/23/85/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
